org.aspectj/tests/bugs163/pr250632/MyAspect.java
2008-10-14 22:54:01 +00:00

19 lines
266 B
Java

interface IMarker<CLOCK,STATE> { }
public aspect MyAspect
{
public void IMarker<CLOCK,STATE>.map()
{
CLOCK[] var = find();
};
public CLOCK[] IMarker<CLOCK,STATE>.find()
{
return null;
}
}