org.aspectj/tests/bugs163/pr250632/MyAspect.java

19 lines
266 B
Java
Raw Normal View History

2008-10-15 00:54:01 +02:00
interface IMarker<CLOCK,STATE> { }
public aspect MyAspect
{
public void IMarker<CLOCK,STATE>.map()
{
CLOCK[] var = find();
};
public CLOCK[] IMarker<CLOCK,STATE>.find()
{
return null;
}
}