blob: a414ca18ce01bf091d0165f6be2672b0e0558427 [file] [log] [blame]
# Copyright (c) 2018, 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.md file.
# Test compiling from source and initializing from dill.
# Make sure that any inference if done in the same way.
type: basic
entry: a.dart
invalidate:
- a.dart
sources:
a.dart: |
// @dart=2.9
import 'b.dart';
class A {
void foo(B cls) {}
}
b.dart: |
// @dart=2.9
abstract class B<T extends String> {}