Index: pkg/front_end/testcases/rasta/issue_000067.dart |
diff --git a/pkg/front_end/testcases/rasta/issue_000067.dart b/pkg/front_end/testcases/rasta/issue_000067.dart |
index 6712407477858f98bc777559eac024d2cc1294d8..f0a175b970394818338db22f0e54572d781ae8d4 100644 |
--- a/pkg/front_end/testcases/rasta/issue_000067.dart |
+++ b/pkg/front_end/testcases/rasta/issue_000067.dart |
@@ -13,11 +13,15 @@ class A { |
class C extends A { |
C() {} |
factory C.bar() = D; |
- int m() { return 1; } |
+ int m() { |
+ return 1; |
+ } |
} |
class D extends C { |
- int m() { return 2; } |
+ int m() { |
+ return 2; |
+ } |
} |
main() { |