blob: b86dbc70382e1b4c441f51a0e4f7c95a5bc98d3c [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 using a mixin from the sdk and invalidationg it.
# Make sure compiling from source and compiling where we initialize from dill
# ends up including the same source code.
type: simple
name: testMixinFromSdk
entry: testMixinFromSdk_a.dart
strong: true
invalidate:
- testMixinFromSdk_a.dart
sources:
testMixinFromSdk_a.dart: |
import 'dart:collection';
class Foo extends Object with ListMixin<int> {
int length = 0;
int operator [](int index) {
return 42;
}
void operator []=(int index, int value) {}
}