From 173855359653486178e7e0a7d7b8918615e6deee Mon Sep 17 00:00:00 2001 From: Alexander Kriegisch Date: Wed, 17 Mar 2021 13:51:59 +0700 Subject: Restructure Java 14 / AJ 1.9.6 tests - Java 14 feature sample classes moved from 'bugs' to 'features' - One test case using a Java 14 preview feature was moved to the Java 14-only tests Signed-off-by: Alexander Kriegisch --- tests/features196/java14/Jep305.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tests/features196/java14/Jep305.java (limited to 'tests/features196/java14/Jep305.java') diff --git a/tests/features196/java14/Jep305.java b/tests/features196/java14/Jep305.java new file mode 100644 index 000000000..3c526aef3 --- /dev/null +++ b/tests/features196/java14/Jep305.java @@ -0,0 +1,22 @@ +class Orange { + public String name1 = "orange"; +} + +class Apple { + public String name2 = "apple"; +} + +public class Jep305 { + public static void main(String []argv) { + print(new Orange()); + print(new Apple()); + } + + public static void print(Object obj) { + if (obj instanceof Orange o) { + System.out.println(o.name1); + } else if (obj instanceof Apple a) { + System.out.println(a.name2); + } + } +} -- cgit v1.2.3