You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2019/01/11 16:58:54 UTC

[groovy] branch master updated: Add a test for "GROOVY-7812: Static inner classes cannot be accessed from other files when running by 'groovy' command"

This is an automated email from the ASF dual-hosted git repository.

sunlan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new e61557f  Add a test for "GROOVY-7812: Static inner classes cannot be accessed from other files when running by 'groovy' command"
e61557f is described below

commit e61557fe8169056ee722cc9e38bc1b46a7fa4e98
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sat Jan 12 00:58:38 2019 +0800

    Add a test for "GROOVY-7812: Static inner classes cannot be accessed from other files when running by 'groovy' command"
---
 .../test/groovy/groovy/ant/Groovy7812Bug.groovy    | 40 ++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/subprojects/groovy-ant/src/test/groovy/groovy/ant/Groovy7812Bug.groovy b/subprojects/groovy-ant/src/test/groovy/groovy/ant/Groovy7812Bug.groovy
new file mode 100644
index 0000000..7c87b6f
--- /dev/null
+++ b/subprojects/groovy-ant/src/test/groovy/groovy/ant/Groovy7812Bug.groovy
@@ -0,0 +1,40 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you 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 groovy.ant
+
+class Groovy7812Bug extends AntTestCase {
+    void test() {
+        doInTmpDir {ant, baseDir ->
+            baseDir.src {
+                'Outer.groovy'('''
+                    class Outer {
+                        static class Inner {
+                        }
+                    }
+                ''')
+                'Main.groovy'('''
+                    assert new Outer()
+                    assert new Outer.Inner()
+                ''')
+            }
+            ant.taskdef(name: 'groovy', classname: 'org.codehaus.groovy.ant.Groovy')
+            ant.groovy(src: new File('src/Main.groovy'))
+        }
+    }
+}