blob: ca76918fbbb30a81c1c98acf8d3942dd0e3e6c72 [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.
export 'load_dill_twice_lib_2.dart';
// Use annotation to force proper printing.
typedef myTypedefWithNamed(@Foo int a, {@Foo int b});
typedef myTypedefWithOptionalPositional(@Foo int a, [@Foo int b]);
const Foo = 42;
class Bar {}
extension BarX on Bar {
void hello() {
print("Hello!");
}
}