blob: d8dcc6c87d39a401295e3c97883425246f4c298d [file] [log] [blame]
/*
* 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.bugs
import org.codehaus.groovy.control.CompilerConfiguration
import org.codehaus.groovy.tools.javac.JavaAwareCompilationUnit
import org.junit.Test
final class Groovy9245 {
@Test
void testConstructorSelection() {
def config = new CompilerConfiguration(
targetDirectory: File.createTempDir(),
jointCompilationOptions: [memStub: true]
)
def parentDir = File.createTempDir()
try {
def a = new File(parentDir, 'A.java')
a.write '''
public class A {
private A() {
}
public A(String s) {
}
private static class B extends A {
}
}
'''
def b = new File(parentDir, 'Main.groovy')
b.write '''
new A(null)
/*
groovy.lang.GroovyRuntimeException: Ambiguous method overloading for method A#<init>.
Cannot resolve which method to invoke for [null] due to overlapping prototypes between:
[class java.lang.String]
[class A$1]
*/
'''
def loader = new GroovyClassLoader(this.class.classLoader)
def cu = new JavaAwareCompilationUnit(config, loader)
cu.addSources(a, b)
cu.compile()
Class clazz = loader.loadClass('Main')
assert clazz.newInstance().run()
} finally {
parentDir.deleteDir()
config.targetDirectory.deleteDir()
}
}
}