blob: 97384faa7289baf07983094c7ae696e8effff26a [file] [log] [blame]
/*
* Copyright (c) 2019, 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 It is an error for a class to extend, implement, or mixin a type
* of the form T? for any T.
*
* @description Check that it is an error for a class to extend, implement,
* or mixin a type of the form T? for any T. Test legacy pre-NNBD types and type
* aliases
* @author sgrekhov@unipro.ru
*/
// SharedOptions=--enable-experiment=non-nullable,nonfunction-type-aliases
import "legacy_library_lib.dart";
typedef AAlias = A?;
typedef IAlias = I?;
typedef MAlias = M?;
class C1 extends AAlias {}
// ^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
class C2 implements IAlias {}
// ^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
class C3 = A with MAlias;
// ^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
class C4 = A with M implements IAlias;
// ^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
class C5 extends A with MAlias {}
// ^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
mixin M1 on AAlias {}
// ^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
mixin M2 on A, MAlias {}
// ^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
mixin M3 on A implements IAlias {}
// ^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
main() {
}