| Index: tests/language_strong/interface_inherit_field_test.dart
|
| diff --git a/tests/language_strong/interface_inherit_field_test.dart b/tests/language_strong/interface_inherit_field_test.dart
|
| index 354b1eaf5cbb61e1da6b765370903f76e7ffeeb1..cfe5418e1aa61de4dc6e8dc2891e828180f0c61a 100644
|
| --- a/tests/language_strong/interface_inherit_field_test.dart
|
| +++ b/tests/language_strong/interface_inherit_field_test.dart
|
| @@ -5,11 +5,11 @@
|
| // Test that it is legal to override a field with a field in an interface.
|
|
|
| abstract class IA {
|
| - final int foo; /// static warning
|
| + final int foo; //# static warning
|
| }
|
|
|
| abstract class IB implements IA {
|
| - final int foo; /// static warning
|
| + final int foo; //# static warning
|
| }
|
|
|
| class B implements IB {
|
|
|