Sign in
eclipse
/
ajdt
/
org.eclipse.ajdt
/
refs/heads/javaLikeExt
/
.
/
org.eclipse.ajdt.ui
/
testdata
/
bug-43709
/
library
/
Library.java
blob: 2678fb17688ef335f8d0aba597e65bd303e90433 [
file
] [
log
] [
blame
]
public
abstract
aspect
Library
{
abstract
pointcut stuff
();
after
():
stuff
()
{
System
.
out
.
println
(
"> after stuff"
);
}
}