507e85ab61
This fixes part of dartbug.com/22995 Turns out that synthesized constructors not always have a type. BUG= R=johnniwinther@google.com Committed: https://code.google.com/p/dart/source/detail?r=45086 Reverted in r45086 Committed: https://code.google.com/p/dart/source/detail?r=45101 Reverted in 45106 Review URL: https://codereview.chromium.org//1019923005 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45159 260f80e4-7a28-3924-810f-c04153c831b5
12 lines
310 B
Dart
12 lines
310 B
Dart
// Copyright (c) 2015, 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.
|
|
|
|
import 'deferred_regression_22995_test.dart';
|
|
|
|
foofoo() {
|
|
new A();
|
|
new B();
|
|
new C();
|
|
}
|