diff options
author | aclement <aclement> | 2006-08-18 12:19:54 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-08-18 12:19:54 +0000 |
commit | 193aa8c16ca07f5743987d8717d5308a54bfb8f4 (patch) | |
tree | 28acde2511f3eb353fb1e41fd502c57b575651e7 /tests/model/pr145963_4/A.java | |
parent | 59123b0efba484e81625d403ca36768e149bd451 (diff) | |
download | aspectj-193aa8c16ca07f5743987d8717d5308a54bfb8f4.tar.gz aspectj-193aa8c16ca07f5743987d8717d5308a54bfb8f4.zip |
145963: binary entries in the model: testcode
Diffstat (limited to 'tests/model/pr145963_4/A.java')
-rw-r--r-- | tests/model/pr145963_4/A.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/model/pr145963_4/A.java b/tests/model/pr145963_4/A.java new file mode 100644 index 000000000..c5764801a --- /dev/null +++ b/tests/model/pr145963_4/A.java @@ -0,0 +1,6 @@ + +public aspect A { + + declare warning : (get(* System.out) || get(* System.err)) : "There should be no printlns"; + +} |