1
0
Mirror von https://github.com/eclipse-aspectj/aspectj.git synchronisiert 2024-08-14 14:11:27 +02:00
org.aspectj/tests/bugs163/pr250632/MyAspect.java

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