Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/RefactoringScanner/B.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/RefactoringScanner/B.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/RefactoringScanner/B.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/RefactoringScanner/B.java
new file mode 100644
index 000000000..5e79e3bfc
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/RefactoringScanner/B.java
@@ -0,0 +1,21 @@
+class B{
+ /**
+ * TestTestPattern
+ * TestPattern
+ */
+ void f(){
+ }
+
+ /*
+ * TestTestPattern
+ *
+ * TestPattern
+ */
+ void f1(){
+ f1();//TestPattern //org.eclipse.TestPattern
+ String g= "TestPattern";//TestTestPattern
+ String g2= "org.eclipse.TestPattern";
+ String g3= "org.eclipse.TestPatternMatching";
+ }
+
+} \ No newline at end of file

Back to the top