Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 18f30a230f05cdfde9a9617ca78cb43f059079f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package consistentSuperTypesDup

/* XPECT validationIssues ---
error at 'class B extends A, A { }' message 'The generic super types at index '1' and '0' must not be duplicates'
--- */

class A
{
} 

class B extends A, A
{
}

Back to the top