blob: b9506c7c774e35e5115ff2fb0df2fc1c5424c344 [file] [log] [blame]
// Copyright (c) 2019, 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.
library has_part;
part 'the_part.dart';
main() {
Foo10 foo = new Foo10("Foo!");
print(foo);
}