Index: tests/language/constructor_with_mixin_test.dart |
diff --git a/tests/language/constructor_with_mixin_test.dart b/tests/language/constructor_with_mixin_test.dart |
index 0da90496013c90c879da0adad1e57e401c089afa..97a9a16f06270df831be41977f709f6c9a383fc0 100644 |
--- a/tests/language/constructor_with_mixin_test.dart |
+++ b/tests/language/constructor_with_mixin_test.dart |
@@ -17,12 +17,14 @@ class A { |
} |
} |
-class I { } |
+class I {} |
class B extends A with I { |
int y; |
- B(int xx) : super(xx), y = 13 { |
+ B(int xx) |
+ : super(xx), |
+ y = 13 { |
b_count++; |
} |
} |
@@ -32,4 +34,3 @@ void main() { |
Expect.equals(1, a_count); |
Expect.equals(1, b_count); |
} |
- |