blob: f884677c70a58b8f8e696a36ebc810eb8a590caf [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: |
import 'b.dart';
class A {
void foo(B cls) {}
}
b.dart: |
abstract class B<T extends String> {}