blob: c5cc7fc2e2e91d3f26e858552586d550771d2337 [file] [log] [blame]
/*
* Copyright (c) 2018, 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 A mixin declaration defines an interface. The interface for this
* mixin declaration is equivalent to the interface of the class declared as:
* abstract class A<X extends S, Y extends T> extends A$super<X, Y>
* implements D, E { body' }
* where body' contains abstract declarations corresponding to the instance
* members of body of the mixin A.
* . . .
* and member declarations are not allowed to have the same name as the mixin
* declaration.
*
* @description Checks that it is a compile error if a mixin member has the same
* name as a mixin declaration. Test type parameters
* @author sgrekhov@unipro.ru
*/
class S {}
class T {}
class X extends S {}
class Y extends T {}
class I {}
class J {}
class B<T> {}
class C<T> {}
mixin M1<X extends S, Y extends T> on B<X>, C<Y> implements I, J {
int M1 = 1;
// ^^
// [analyzer] SYNTACTIC_ERROR.MEMBER_WITH_CLASS_NAME
// [cfe] A class member can't have the same name as the enclosing class.
}
mixin M2<X extends S, Y extends T> on B<X>, C<Y> implements I, J {
int get M2;
// ^^
// [analyzer] SYNTACTIC_ERROR.MEMBER_WITH_CLASS_NAME
// [cfe] A class member can't have the same name as the enclosing class.
}
mixin M3<X extends S, Y extends T> on B<X>, C<Y> implements I, J {
void set M3(p);
// ^^
// [analyzer] SYNTACTIC_ERROR.MEMBER_WITH_CLASS_NAME
// [cfe] A class member can't have the same name as the enclosing class.
}
mixin M4<X extends S, Y extends T> on B<X>, C<Y> implements I, J {
int M4();
// [error line 54, column 0]
// [analyzer] unspecified
// [cfe] unspecified
}
main() {
}