added test for full path constructor invocation
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package org.test
|
||||
|
||||
class Library {}
|
||||
}
|
||||
|
||||
class User {
|
||||
void main() {
|
||||
Library lib = new Library();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace org.test {
|
||||
open class Library {
|
||||
}
|
||||
open class User {
|
||||
fun main() : Unit {
|
||||
var lib : Library? = org.test.Library()
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user