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

/* XPECT validationIssues ---
error at 'int' message 'The primitive type 'int' can not be used in this context'
--- */

class A<T>
{
  refers A<int> a
} 

Back to the top