diff options
Diffstat (limited to 'tests/parser/test-006.cli')
-rw-r--r-- | tests/parser/test-006.cli | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/tests/parser/test-006.cli b/tests/parser/test-006.cli deleted file mode 100644 index 7c70887..0000000 --- a/tests/parser/test-006.cli +++ /dev/null @@ -1,51 +0,0 @@ -class c -{ - bool --bool; - char --char; - - int -i1; - unsigned int -i2; - int unsigned -i3; - long -i4; - long int -i5; - int long -i6; - unsigned long -i7; - long unsigned -i8; - - unsigned long int -i9; - long unsigned int -i10; - int long unsigned -i11; - unsigned int long -i12; - - short -i13; - unsigned short -i14; - short unsigned -i15; - - char -i16; - signed char -i17; - char signed -i18; - unsigned char -i19; - char unsigned -i20; - - double -d1; - long double -d2; - double long -d3; - - foo -o1; - ::foo -o2; - ::foo<bar> -o3; - foo::bar -o4; - ::foo::bar -o5; - ::foo<bar>::baz -o6; - ::foo<bar>::baz< ::fox<2> > -o7; - - bool -n|--name|/name; - - string -init1 = "string"; - char -init2 = 'c'; - int -init3 = -5; - bool -inti4 = true; - long -init5 = (2 * 4 - 5); - type -init6 = type::default_value; - type -init7 (abc, 2 - 1); -}; |