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

Unified Diff: tests/language/src/ConstConstructorSyntaxTest.dart

Issue 9375007: Rewrite the const constructor negative tests into a single multi test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Leg. Created 8 years, 10 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 | « tests/language/src/ConstConstructorNegativeTest.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/src/ConstConstructorSyntaxTest.dart
diff --git a/tests/language/src/ConstConstructorSyntaxTest.dart b/tests/language/src/ConstConstructorSyntaxTest.dart
new file mode 100644
index 0000000000000000000000000000000000000000..468269a5a0c2b02e8bf765b06936d14de4db0c13
--- /dev/null
+++ b/tests/language/src/ConstConstructorSyntaxTest.dart
@@ -0,0 +1,27 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+main() {
+ var c0 = const C0(); /// 01: compile-time error
+ var i0 = const I0(); /// 02: compile-time error
+ var c1 = const C1();
+ var c2 = const C2(); /// 03: compile-time error
+}
+
+interface I0 default C0 {
+ I0();
+}
+
+class C0 implements I0 {
+ C0();
+}
+
+class C1 {
+ const C1();
+ var modifiable; /// 04: compile-time error
+}
+
+class C2 {
+ C2();
+}
« no previous file with comments | « tests/language/src/ConstConstructorNegativeTest.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698