blob: c8c4cbe5bdf316e22ee26ec75fe8820d0d2c31ec [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.
sources:
main.dart: |
class Bound {}
void hasBound<T extends Bound>() {}
main() {}
main_2.dart: |
import 'main.dart' as m;
main() {
m.main();
}
entry_point: "main_2.dart"
type_definitions: ["T"]
position: "main.dart"
expression: |
hasBound<T>()