summaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr137235/directory.jar/Rename.aj
blob: fb89dfca5288d39500b0208bbdb3398549a36677 (plain)
1
2
3
4
5
public aspect Rename {
    String around() : call(* getName()) { 
    	return "AspectJ not just "+proceed(); 
	}
}