| // Copyright (c) 2023, 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. |
| |
| /// @assertion Mixin can be implemented and mixed in but not constructed or |
| /// extended and is not exhaustive |
| /// |
| /// @description Checks that a `mixin` cannot be constructed |
| /// @author sgrekhov22@gmail.com |
| |
| import "class_modifiers_lib.dart"; |
| |
| mixin LocalMixin {} |
| |
| main() { |
| Mixin(); |
| //^^^^^ |
| // [analyzer] unspecified |
| // [cfe] unspecified |
| |
| LocalMixin(); |
| //^^^^^^^^^^ |
| // [analyzer] unspecified |
| // [cfe] unspecified |
| } |