blob: 56443ccb013de60ba167d607716ce74bd6dac3ed [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>() {}
class C<T extends Bound> {}
main() {}
main_2.dart: |
import 'main.dart' as m;
main() {
m.main();
}
entry_point: "main_2.dart"
position: "main.dart#C"
expression: |
hasBound<T>()