Index: dart/tests/language/type_variable_scope_test.dart |
diff --git a/dart/tests/language/type_variable_scope_test.dart b/dart/tests/language/type_variable_scope_test.dart |
index 001f8713567901db7c97b0d4f9e431792211ccfc..3a3aa8e7d0a198006d6d2521e9ad108e61accd7a 100644 |
--- a/dart/tests/language/type_variable_scope_test.dart |
+++ b/dart/tests/language/type_variable_scope_test.dart |
@@ -27,7 +27,7 @@ class Foo<T> { |
static |
Foo<T> /// 04: dynamic type error |
- get f() { return new Foo<String>(); } |
+ get f { return new Foo<String>(); } |
static void set f( |
Foo<T> /// 05: dynamic type error |