Sign in
eclipse
/
ajdt
/
org.eclipse.ajdt
/
refs/heads/javaLikeExt
/
.
/
org.eclipse.ajdt.ui
/
testdata
/
bug-43709
/
src
/
Client.java
blob: 642d713acc1084bb6cfb39e1eacc0edc4f4f87be [
file
] [
log
] [
blame
]
public
aspect
Client
extends
Library
{
pointcut stuff
():
execution
(*
*.
main
(..));
after
():
stuff
()
{
}
}