blob: c6eb17a22d77e5ed3bc43b4b5dc0a6ff784c9860 [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: simple
name: testCalculatedBounds
entry: testCalculatedBounds_a.dart
strong: false
invalidate:
- testCalculatedBounds_a.dart
sources:
testCalculatedBounds_a.dart: |
import 'testCalculatedBounds_b.dart';
class A {
void foo(B cls) {}
}
testCalculatedBounds_b.dart: |
abstract class B<T extends String> {}