48db96b66d
Fixed #KT-30628
10 lines
244 B
Java
Vendored
10 lines
244 B
Java
Vendored
import testData.libraries.*;
|
|
|
|
class TestClassAndConstructors {
|
|
void foo() {
|
|
|
|
SomeClassWithConstructors inst = new SomeClassWithConstructors("arg");
|
|
|
|
SomeClassWithConstructors inst2 = new SomeClassWithConstructors(2);
|
|
}
|
|
} |