diff options
author | wisberg <wisberg> | 2003-05-27 17:24:07 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-05-27 17:24:07 +0000 |
commit | d43889dac2de39e87071dc9ff32eaf630ca6b439 (patch) | |
tree | 5988b79ec0193511b9ba26217bc89b7fcf0a0d17 /tests/harness | |
parent | c6aba460751865ecfe1ccc2bcbd983f96fd745fa (diff) | |
download | aspectj-d43889dac2de39e87071dc9ff32eaf630ca6b439.tar.gz aspectj-d43889dac2de39e87071dc9ff32eaf630ca6b439.zip |
neglected source
Diffstat (limited to 'tests/harness')
-rw-r--r-- | tests/harness/XLintWarningTest.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/harness/XLintWarningTest.java b/tests/harness/XLintWarningTest.java new file mode 100644 index 000000000..f240cd717 --- /dev/null +++ b/tests/harness/XLintWarningTest.java @@ -0,0 +1,11 @@ + + +public aspect XLintWarningTest { + + before() : staticinitialization(UnknownType) { // CW 5 - XLint:invalidAbsoluteTypeName + System.err.println("never"); + } +} + + + |