blob: e9a122f089d1b783d1524db8060dbee95aa922c0 [file] [log] [blame]
// Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package intrinsics_identifiers
import java.net.URI
fun main(args: Array<String>) {
// By specifying non-null type of variables for library uses,
// kotlin.jvm.internal.Intrinsics#check*Null(...) is added by kotlinc.
val uri: URI = URI.create("google.com")
val host: String = uri.host
println(host)
}