Chromium Code Reviews| Index: tests/language/src/CallThroughGetterTest.dart |
| diff --git a/tests/language/src/CallThroughGetterTest.dart b/tests/language/src/CallThroughGetterTest.dart |
| index 93d9cc4c7f4ad7b65683c175b8c61caea169ada2..4c63ebe8dced57e772592055f411d2b124161586 100644 |
| --- a/tests/language/src/CallThroughGetterTest.dart |
| +++ b/tests/language/src/CallThroughGetterTest.dart |
| @@ -29,10 +29,10 @@ class CallThroughGetterTest { |
| Expect.equals(2, topLevel()); |
| expectThrowsNotClosure(() { |
| - TOP_LEVEL_CONST(); /// static type error |
| + TOP_LEVEL_CONST(); /// static type warning |
|
zundel
2012/03/09 17:05:47
oops, forgot to change these annotations before la
|
| }); |
| expectThrowsNotClosure(() { |
| - (TOP_LEVEL_CONST)(); /// static type error |
| + (TOP_LEVEL_CONST)(); /// static type warning |
| }); |
| } |