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

Unified Diff: tests/language/issue_25671b_test.dart

Issue 2768073002: Format all 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
Index: tests/language/issue_25671b_test.dart
diff --git a/tests/language/issue_25671b_test.dart b/tests/language/issue_25671b_test.dart
index 4725681271c7e0b42e023ae8ce968dfa319c41c6..4f2feb95b0272b4bb6a296173f3b6b58ea0fd893 100644
--- a/tests/language/issue_25671b_test.dart
+++ b/tests/language/issue_25671b_test.dart
@@ -10,11 +10,13 @@ class A {
"Wrong noSuchMethod() should not be called"); //# 01: continued
} // //# 01: continued
}
+
class C extends Object with A {
test() {
super.v = 1; //# 01: continued
}
}
+
main() {
C c = new C();
Expect.throws(() => c.test(), (e) => e is NoSuchMethodError); //# 01: continued

Powered by Google App Engine
This is Rietveld 408576698