test for private init method added
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
public class MyClass {
|
||||
private void init(int arg1, int arg2, int arg3) {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace {
|
||||
public open class MyClass {
|
||||
open private fun init(arg1 : Int, arg2 : Int, arg3 : Int) : Unit {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user