diff options
Diffstat (limited to 'tests/bugs164/pr262350/Instrumentation.java')
-rw-r--r-- | tests/bugs164/pr262350/Instrumentation.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs164/pr262350/Instrumentation.java b/tests/bugs164/pr262350/Instrumentation.java new file mode 100644 index 000000000..13f86c9d3 --- /dev/null +++ b/tests/bugs164/pr262350/Instrumentation.java @@ -0,0 +1,9 @@ +package dImmunix; + +import java.util.concurrent.locks.Lock; +import java.util.concurrent.locks.ReentrantLock; +public aspect Instrumentation { + after(Object l) throwing: lock() && args(l) { + } +} + |