summaryrefslogtreecommitdiffstats
path: root/tests/harness
diff options
context:
space:
mode:
authorwisberg <wisberg>2003-05-27 17:24:07 +0000
committerwisberg <wisberg>2003-05-27 17:24:07 +0000
commitd43889dac2de39e87071dc9ff32eaf630ca6b439 (patch)
tree5988b79ec0193511b9ba26217bc89b7fcf0a0d17 /tests/harness
parentc6aba460751865ecfe1ccc2bcbd983f96fd745fa (diff)
downloadaspectj-d43889dac2de39e87071dc9ff32eaf630ca6b439.tar.gz
aspectj-d43889dac2de39e87071dc9ff32eaf630ca6b439.zip
neglected source
Diffstat (limited to 'tests/harness')
-rw-r--r--tests/harness/XLintWarningTest.java11
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");
+ }
+}
+
+
+