summaryrefslogtreecommitdiff
path: root/test/files/pos/t3349/AbstractTupleSet.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3349/AbstractTupleSet.java')
-rw-r--r--test/files/pos/t3349/AbstractTupleSet.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/pos/t3349/AbstractTupleSet.java b/test/files/pos/t3349/AbstractTupleSet.java
new file mode 100644
index 0000000000..38e4743ef4
--- /dev/null
+++ b/test/files/pos/t3349/AbstractTupleSet.java
@@ -0,0 +1,9 @@
+public abstract class AbstractTupleSet implements TupleSet {
+ public void addColumn(String name, Class type) {
+ throw new UnsupportedOperationException();
+ }
+
+ public void addColumn(String name, String expr) {
+ throw new UnsupportedOperationException();
+ }
+}