summaryrefslogtreecommitdiffstats
path: root/src/CBot/tests/TestCBot/scenarios/opnew.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/CBot/tests/TestCBot/scenarios/opnew.txt')
-rw-r--r--src/CBot/tests/TestCBot/scenarios/opnew.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/CBot/tests/TestCBot/scenarios/opnew.txt b/src/CBot/tests/TestCBot/scenarios/opnew.txt
new file mode 100644
index 0000000..7d6838c
--- /dev/null
+++ b/src/CBot/tests/TestCBot/scenarios/opnew.txt
@@ -0,0 +1,20 @@
+extern public void xx ()
+{
+ CPoint pointeur, test = null ;
+ pointeur = new CPoint ( 3, 4 );
+
+ if ( test == null ) show ( "NULL" );
+
+ CPoint pp = pointeur;
+
+show( pointeur , pp );
+
+ pp.x = 33.3;
+ if ( pointeur.x != pp.x ) 0/0;
+
+ pp = new CPoint();
+// pointeur = pp;
+
+show( pointeur , pp );
+
+} \ No newline at end of file