summaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr222648/DataInterface.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs162/pr222648/DataInterface.java')
-rw-r--r--tests/bugs162/pr222648/DataInterface.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs162/pr222648/DataInterface.java b/tests/bugs162/pr222648/DataInterface.java
new file mode 100644
index 000000000..76e9b18f8
--- /dev/null
+++ b/tests/bugs162/pr222648/DataInterface.java
@@ -0,0 +1,9 @@
+package test;
+
+public interface DataInterface<CONTENT>
+{
+
+ public CONTENT getContent();
+
+
+}