99d5344463
now unsafe-force-compile will generate a throw rather than a free floating name R=vsm@google.com Review-Url: https://codereview.chromium.org/2920223009 .
11 lines
126 B
Dart
11 lines
126 B
Dart
// compile options: --unsafe-force-compile
|
|
|
|
class C {}
|
|
|
|
main() {
|
|
new Foo();
|
|
new C.bar();
|
|
print(baz);
|
|
print(C.quux);
|
|
}
|