[LC] rename lightClasses/lightClasses to lightClasses/lightClassByFqName
This commit is contained in:
+22
@@ -0,0 +1,22 @@
|
||||
// Trait
|
||||
|
||||
import org.jetbrains.annotations.NotNull
|
||||
import org.jetbrains.annotations.Nullable
|
||||
|
||||
interface Trait {
|
||||
fun notNull(p: String): String
|
||||
fun nullable(p: String?): String?
|
||||
|
||||
@NotNull fun notNullWithNN(): String
|
||||
@Nullable fun notNullWithN(): String
|
||||
|
||||
@Nullable fun `nullableWithN`(): String?
|
||||
@NotNull fun nullableWithNN(): String?
|
||||
|
||||
val nullableVal: String?
|
||||
var nullableVar: String?
|
||||
val notNullVal: String
|
||||
var notNullVar: String
|
||||
}
|
||||
|
||||
// FIR_COMPARISON
|
||||
Reference in New Issue
Block a user