| Index: tests/language_strong/fauxverride_test.dart
 | 
| diff --git a/tests/language_strong/fauxverride_test.dart b/tests/language_strong/fauxverride_test.dart
 | 
| index 4bc2d36a4fb527777132f6e44eb91bb97f933605..45e7d64dc4b7a630e4b90e2f4bcd2df1e6c6a490 100644
 | 
| --- a/tests/language_strong/fauxverride_test.dart
 | 
| +++ b/tests/language_strong/fauxverride_test.dart
 | 
| @@ -68,7 +68,7 @@ class Sub extends Super {
 | 
|    // According to 7.1, instance methods include those of the
 | 
|    // superclass, and according to 7, it is a compile-time to have an
 | 
|    // instance method and static method with the same name.
 | 
| -  static /// 03: compile-time error
 | 
| +  static //# 03: compile-time error
 | 
|    instanceMethod() => m();
 | 
|  
 | 
|    // According to 7.7, static variables are not inherited.
 | 
| @@ -79,7 +79,7 @@ class Sub extends Super {
 | 
|    // instance method and static method with the same
 | 
|    // name. Furthermore, according to 7.7 a static variable induces an
 | 
|    // implicit getter function (a static method).
 | 
| -  static var instanceMethod2; /// 05: compile-time error
 | 
| +  static var instanceMethod2; //# 05: compile-time error
 | 
|  
 | 
|    foo() => 'foo';
 | 
|  }
 | 
| 
 |