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

Unified Diff: tests/language/factory_redirection3_cyclic_test.dart

Issue 24264002: Fix merge error in test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/factory_redirection3_cyclic_test.dart
diff --git a/tests/language/factory_redirection3_cyclic_test.dart b/tests/language/factory_redirection3_cyclic_test.dart
index 1a87541e9d417c9490f6a4faf819329f650f41f7..46629118fa41a25a21b073c57c625b193eaa7a61 100644
--- a/tests/language/factory_redirection3_cyclic_test.dart
+++ b/tests/language/factory_redirection3_cyclic_test.dart
@@ -8,11 +8,11 @@ class A {
factory A.foo() = B;
}
-class B<T> implements A {
+class B implements A {
factory B() = C.bar;
}
-class C<T> implements B {
+class C implements B {
factory C.bar() = C.foo;
factory C.foo() = C
.bar /// 01: compile-time error
@@ -21,5 +21,5 @@ class C<T> implements B {
}
main() {
- new A<int>.foo();
+ new A.foo();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698