public class BadAround { } class C { public String m(String s) { return "hi"; } public int mi() { return 2; } } aspect A { Object around(): call(String C.m(..)) { return new Integer(2); } Object around(Object a): call(String C.m(..)) && args(a) { return proceed(new Integer(2)); } Object around(): call(int C.mi()) { return "2"; } int around(): call(String C.m(..)) { // ERR, return type mismatch return 2; } } >index : gitea.git
Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD: https://github.com/go-gitea/giteawww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/.air.toml
blob: 7b5a5cb86a7d0df9e8a3e9c1f769fb5fc5190df4 (plain)
1
2
3
4
5
6
7
8
9