blob: f93a9ba4d9c3683ee3d2323334292d73b7147467 [file] [log] [blame]
// Copyright (c) 2014, 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 file.
// @dart = 2.9
class MixinA<T> {
T intField;
}
class MixinB<S> {
S stringField;
}
class MixinC<U, V> {
U listField;
V mapField;
}
class C extends Object with MixinA<int>, MixinB<String>, MixinC<List, Map> {}
void main() {
var c = new C();
c.intField = 0;
c.stringField = '';
c.listField = [];
c.mapField = {};
}