Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: tests/language_strong/interface_inherit_field_test.dart

Issue 2765693002: Update all tests (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {

Powered by Google App Engine
This is Rietveld 408576698