blob: dbabbd37b9a002a12bc4fe39c645f77554a0d9c4 [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.
# Compile in strong mode. Invalidate a file so type inferrer starts
# on something compiled from source and (potentially) goes into
# something loaded from dill.
type: simple
name: testStrongModeMixins
entry: testStrongModeMixins_a.dart
strong: true
invalidate:
- testStrongModeMixins_a.dart
sources:
testStrongModeMixins_a.dart: |
import 'testStrongModeMixins_b.dart';
class A extends Object with B<Object>, C {}
testStrongModeMixins_b.dart: |
abstract class C<T extends Object> extends Object with B<T> {}
abstract class B<ChildType extends Object> extends Object {}