summaryrefslogtreecommitdiffstats
path: root/src/CBot/tests/TestCBot/scenarios/TestNull.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/CBot/tests/TestCBot/scenarios/TestNull.txt')
-rw-r--r--src/CBot/tests/TestCBot/scenarios/TestNull.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/CBot/tests/TestCBot/scenarios/TestNull.txt b/src/CBot/tests/TestCBot/scenarios/TestNull.txt
new file mode 100644
index 0000000..f447245
--- /dev/null
+++ b/src/CBot/tests/TestCBot/scenarios/TestNull.txt
@@ -0,0 +1,15 @@
+extern public void TestNull ()
+{
+ CPoint pointeur = null;
+
+ try {
+ pointeur.x = 4; }
+ catch ( 6007 ) {}
+
+ pointeur = new CPoint(1,2);
+
+ print ( pointeur.x, pointeur.y,
+ pointeur );
+
+ pointeur.x = 5;
+} \ No newline at end of file