elect
07/27/2018, 8:09 AMName? gets mapped to String instead String?..?
inline class Name(val s: String)
fun foo(n: Name?) { ... } // `Name?` here is mapped to StringPavlo Liapota
07/27/2018, 8:12 AMString in byte code?gildor
07/27/2018, 8:13 AMString? in bytecode, nullable types is compiler only feature + generated asserts to check nullabilityelect
07/27/2018, 8:13 AM