blob: efdd0c3f73ebcecb104a5c58064b6e81e2818ae1 [file] [log] [blame]
// Copyright (c) 2017, 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.
const a = null;
@a
class C = D with E;
class D {}
mixin E {}
main() {}