/test/language/unclassified/pr1/test.e
Specman e | 25 lines | 14 code | 4 blank | 7 comment | 0 complexity | 982a895ea6d454f4697c82ac75d89195 MD5 | raw file
1class TEST 2 -- As of 2011-10-05 this test will run fine when compiled "plainly", i.e. with "compile test" 3 -- When issuing "compile -boost test" or any other compiling flag it fails with something like: 4 5 -- test1.c: In function se_ms: 6 -- test1.c:3288:2: error: T7 has no member named _storage_lower 7 -- test1.c: In function se_string: 8 -- test1.c:3299:2: error: T7 has no member named _storage_lower 9 10creation make 11feature 12 make is 13 -- Testing 14 do 15 create a; create b; create c 16 a.foo 17 b.foo 18 c.foo 19 20 end 21 a: A 22 b: B 23 c: C 24end 25