Mercurial > emacs
diff test/cedet/tests/scopetest.java @ 104494:e480034314ce
Add Semantic unit tests.
| author | Chong Yidong <cyd@stupidchicken.com> |
|---|---|
| date | Sun, 20 Sep 2009 04:00:13 +0000 |
| parents | |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/cedet/tests/scopetest.java Sun Sep 20 04:00:13 2009 +0000 @@ -0,0 +1,25 @@ +class Foo { + + public void a1() {} + + class Bar { + + public int a2() {} + + public void b() { + a // -1- + } + + class Baz { + + public int a3() {} + + public Baz(int a4) { + a // -2- + } + + } + + } + +} \ No newline at end of file
