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

/* XPECT validationIssues ---
error at 'x='x'' message 'The feature 'details' has a map entry at index 1 with a key that collides with that of the map entry at index 0'
--- */

annotation "Foo" as Foo

@Foo(x='x', x='x')
class A
{
} 

Back to the top