blob: 5c2966bec3b5d2f7d33522904e53f56ff6a2efd6 [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.
// @dart = 2.9
void main() {
var foo = Foo();
foo.foo();
}
class Foo {
/*nm*/ void foo() {
print('foo');
}
}