Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuGetClass2/in/A.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuGetClass2/in/A.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuGetClass2/in/A.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuGetClass2/in/A.java
new file mode 100644
index 000000000..feb4b2d45
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuGetClass2/in/A.java
@@ -0,0 +1,16 @@
+package p;
+
+class A {
+ void m(Object someObject) {
+ someObject.getClass();
+ }
+ void m1(Object someObject) {
+ Class c= someObject.getClass();
+ }
+ void i(Integer someInt) {
+ someInt.getClass();
+ }
+ void i1(Integer someInt) {
+ Class c= someInt.getClass();
+ }
+}

Back to the top