How to make a reproduction of a bug for OkHttp

Make a Kotlin script in Intellij, place it outside any source folders and make sure it ends with .main.kts filename. example.main.kts #!/usr/bin/env kotlin @file:Repository(“https://repo1.maven.org/maven2/”) @file:DependsOn(“com.squareup.okhttp3:okhttp:4.9.0”) @file:CompilerOptions(“-jvm-target”, “1.8”) import okhttp3.OkHttpClient import okhttp3.Request val client = OkHttpClient() val request = Request.Builder() .url(“https://raw.github.com/square/okhttp/master/README.md”) .build() val body = client.newCall(request).execute().use { it.body!!.string() } println(body) The #! line means it will … Read more