shouldn't this test pass (assuming I was doing a test_compile_warning_any)? If I run the code normally, I get a warning...
Thoughts?
Bill
Doing tests in t (1 tests) t.in:14: Test 1 (shift 1) failed (expected compile warning). 1: 2: #pragma string_types 3: 4: class foo(string|int a) 5: { 6: void bar() 7: { 8: int b = a; 9: } 10: } 11: 12: object a = foo(1); 13: 14: