blob: 9b471de0c8d1b590fcdb1938c88c288d911ca36d [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 in non-strong-mode from source and initializing from dill.
# Make sure that any inference if done in the same way.
type: basic
entry: a.dart
strong: false
invalidate:
- a.dart
sources:
a.dart: |
import 'b.dart';
class A {
void foo(B cls) {}
}
b.dart: |
abstract class B<T extends String> {}