Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a270939c33264b18961f618e733032f7ff4c2516 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package foo

/* 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