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

Unified Diff: tests/language/const_constructor_mixin2_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (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
« no previous file with comments | « tests/language/const_constructor3_test.dart ('k') | tests/language/const_constructor_mixin3_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/const_constructor_mixin2_test.dart
diff --git a/tests/language/const_constructor_mixin2_test.dart b/tests/language/const_constructor_mixin2_test.dart
index 558014bf07ed00c5a5d65102d5ecfc696590a8c3..f323b5a33b9bb26267c00ba0b99f906fcb7350a8 100644
--- a/tests/language/const_constructor_mixin2_test.dart
+++ b/tests/language/const_constructor_mixin2_test.dart
@@ -11,12 +11,12 @@ class A {
}
class B extends A
- with Mixin // /// 01: compile-time error
+ with Mixin // //# 01: compile-time error
{
const B(foo) : super(foo);
}
main() {
var a = const B(42);
- a.nonFinalField = 54; /// 01: continued
+ a.nonFinalField = 54; //# 01: continued
}
« no previous file with comments | « tests/language/const_constructor3_test.dart ('k') | tests/language/const_constructor_mixin3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698