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

19 рядки
266 B
Java

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;
}
}