blob: 08fcc78b1d6bc7d039f7e65d9736cf4a8f77c910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Simple compiler test.
public final class Where implements support.Waldo
{
int WhereIsWaldo ()
{
// The compiler should find 'here' in support.Waldo.
return here;
}
}
|