blob: 6b9ed3fd86aff08fee14c2d7c08df5e7a0ee750d [file] [log] [blame]
abstract class Mixin {}
class Base {
final int x;
const Base(this.x);
}
class Application = Base with Mixin;
main() {}
expect(expected, actual) {}