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

Side by Side Diff: tests/language_strong/bad_constructor_test.dart

Issue 2990933002: Migrate block 43. (Closed)
Patch Set: Update tests and status file. Created 3 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 class A {
6 // Constructor may not be static.
7 static A(); // //# 00: compile-time error
8
9 // Factory may not be static.
10 static factory A() { return null; } // //# 01: compile-time error
11
12 // Named constructor may not conflict with names of methods and fields.
13 var m;
14 A.m() { m = 0; } // //# 04: compile-time error
15
16 set q(var value) {
17 m = q;
18 } // No name conflict with q=.
19 // The runtime error occurs because main calls new A() instead of new A.q().
20 A.q(); // //# 05: runtime error
21
22 A.foo() : m = 0; // //# 06: compile-time error
23 int foo(int a, int b) => a + b * m;
24 }
25
26 main() {
27 new A();
28 }
OLDNEW
« no previous file with comments | « tests/language_2/language_2.status ('k') | tests/language_strong/bad_initializer1_negative_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698