Where.java 195 Bytes
Newer Older
Tom Tromey committed
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;
    }
}