aboutsummaryrefslogtreecommitdiffstats
path: root/weaver/src/test/java/fluffy/Derived.java
diff options
context:
space:
mode:
Diffstat (limited to 'weaver/src/test/java/fluffy/Derived.java')
-rw-r--r--weaver/src/test/java/fluffy/Derived.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/weaver/src/test/java/fluffy/Derived.java b/weaver/src/test/java/fluffy/Derived.java
new file mode 100644
index 000000000..ad0842c18
--- /dev/null
+++ b/weaver/src/test/java/fluffy/Derived.java
@@ -0,0 +1,20 @@
+package fluffy;
+
+import java.io.IOException;
+
+public class Derived extends Base {
+
+ public static void onlyDerived() throws IOException, CloneNotSupportedException {}
+ public static void both() {}
+
+ public void onlyDerivedNonStatic() {}
+ public void bothNonStatic() {}
+
+ public int onlyDerived;
+ public int both;
+
+ public Derived() {}
+
+ public void m() {}
+
+}