add source code that does not have location annotations.
[IRC.git] / Robust / JavaGrammar / tests / Eric15.java
1 /** Some valid java code from Eric Blake.  This should compile
2  *  with any JSR-14 javac, as well as parse correctly (no syntax errors)
3  *  using the java15.cup grammar in this package. */
4 class Eric15<T> {
5     class B<S> { }
6     Eric15<Integer>.B<Integer> c;
7 }