about summary refs log tree commit diff stats
path: root/js/scripting-lang/c/test_number_copy_debug.txt
blob: 92c46d7d418373049faf952dae89ef86167b7f89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/* Debug test for number copy issues */

x : 5;
..out "x declared";

..out x;

/* Test copying a number */
y : x;
..out "y copied from x";

..out y;