aboutsummaryrefslogtreecommitdiff
path: root/javaparser-symbol-solver-testing/src/test/resources/InterfaceInheritance.java.txt
diff options
context:
space:
mode:
Diffstat (limited to 'javaparser-symbol-solver-testing/src/test/resources/InterfaceInheritance.java.txt')
-rw-r--r--javaparser-symbol-solver-testing/src/test/resources/InterfaceInheritance.java.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/javaparser-symbol-solver-testing/src/test/resources/InterfaceInheritance.java.txt b/javaparser-symbol-solver-testing/src/test/resources/InterfaceInheritance.java.txt
new file mode 100644
index 000000000..27b027eef
--- /dev/null
+++ b/javaparser-symbol-solver-testing/src/test/resources/InterfaceInheritance.java.txt
@@ -0,0 +1,16 @@
+class Test{
+
+ interface Foo{
+ double foobar();
+ }
+
+ interface Bar extends Foo {
+
+ }
+
+ void test(){
+ Bar b = null;
+ b.foobar();
+ }
+
+} \ No newline at end of file