GROOVY-7343: Fixed access forbidden to static property
diff --git a/src/main/org/codehaus/groovy/classgen/asm/sc/StaticTypesTypeChooser.java b/src/main/org/codehaus/groovy/classgen/asm/sc/StaticTypesTypeChooser.java
index 8e3e86b..f77ed9f 100644
--- a/src/main/org/codehaus/groovy/classgen/asm/sc/StaticTypesTypeChooser.java
+++ b/src/main/org/codehaus/groovy/classgen/asm/sc/StaticTypesTypeChooser.java
@@ -50,6 +50,10 @@
}
return inferredType;
}
+ if (target instanceof VariableExpression && ((VariableExpression) target).isThisExpression()) {
+ // AsmClassGenerator may create "this" expressions that the type checker knows nothing about
+ return current;
+ }
return super.resolveType(exp, current);
}
diff --git a/src/test/org/codehaus/groovy/classgen/asm/sc/bugs/Groovy7343Bug.groovy b/src/test/org/codehaus/groovy/classgen/asm/sc/bugs/Groovy7343Bug.groovy
new file mode 100644
index 0000000..a9566ed
--- /dev/null
+++ b/src/test/org/codehaus/groovy/classgen/asm/sc/bugs/Groovy7343Bug.groovy
@@ -0,0 +1,46 @@
+/*
+ * Copyright 2003-2015 the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+
+
+
+
+
+package org.codehaus.groovy.classgen.asm.sc.bugs
+
+import groovy.transform.stc.StaticTypeCheckingTestCase
+import org.codehaus.groovy.classgen.asm.sc.StaticCompilationTestSupport
+
+class Groovy7343Bug extends StaticTypeCheckingTestCase implements StaticCompilationTestSupport {
+ void testIncorrectInstanceOfInference() {
+ assertScript '''
+ class Test {
+ static private String str = "My String"
+
+ static def test() {
+ myStr
+ }
+
+ static String getMyStr() {
+ return "${str.replace(" ", "")}"
+ }
+ }
+
+ assert Test.test() == 'MyString'
+ '''
+ }
+}