blob: a0201103b791b4c23ce376f5ed5f8fc0e18fba21 [file] [log] [blame]
// Copyright (c) 2017, 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() {
Foo foo = new Foo.named();
}
class Foo {
/*nm*/ Foo.named() {
print("foo");
}
}