diff options
author | aclement <aclement> | 2005-06-08 10:48:50 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-06-08 10:48:50 +0000 |
commit | f747b829d02a4b76fc44da2a0eb1940c3e9cd593 (patch) | |
tree | db45b32b96116097737a150736e11abc236eef93 /tests/bugs150/pr84260/I2.java | |
parent | 36b591b08a5760d6189c9dd467e96f1574be7951 (diff) | |
download | aspectj-f747b829d02a4b76fc44da2a0eb1940c3e9cd593.tar.gz aspectj-f747b829d02a4b76fc44da2a0eb1940c3e9cd593.zip |
tests for pr84260: static imports
Diffstat (limited to 'tests/bugs150/pr84260/I2.java')
-rw-r--r-- | tests/bugs150/pr84260/I2.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs150/pr84260/I2.java b/tests/bugs150/pr84260/I2.java new file mode 100644 index 000000000..6e36b2dc7 --- /dev/null +++ b/tests/bugs150/pr84260/I2.java @@ -0,0 +1,9 @@ +import static a.b.c.A.*; + +public class I2 { + + public static void main(String []argv) { + m(); + } + +} |