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

Unified Diff: tests/language/const_redirect_skips_supertype_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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/const_redirect_skips_supertype_test.dart
diff --git a/tests/language/const_redirect_skips_supertype_test.dart b/tests/language/const_redirect_skips_supertype_test.dart
index c84aa6227445eaf2a511049eb082c92e0fe1759b..f79ad5a6a2ac0d9f25dd62524a377d2bb89118e5 100644
--- a/tests/language/const_redirect_skips_supertype_test.dart
+++ b/tests/language/const_redirect_skips_supertype_test.dart
@@ -10,10 +10,12 @@ class B {
const B() : x = y;
const B.named() : x = null;
}
+
class C extends B {
const C() : this.named();
const C.named() : super.named();
}
+
const y = const C();
main() {

Powered by Google App Engine
This is Rietveld 408576698