From 419927f098ebd44d3a3655a49f7d6f43b1f108af Mon Sep 17 00:00:00 2001 From: Michael Bull Date: Tue, 26 Oct 2021 12:32:01 +0100 Subject: [PATCH] Suppress warning in GetTest --- .../commonTest/kotlin/com/github/michaelbull/result/GetTest.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/GetTest.kt b/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/GetTest.kt index 0a4357d..47e08c2 100644 --- a/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/GetTest.kt +++ b/kotlin-result/src/commonTest/kotlin/com/github/michaelbull/result/GetTest.kt @@ -4,6 +4,7 @@ import kotlin.test.Test import kotlin.test.assertEquals import kotlin.test.assertNull +@Suppress("IMPLICIT_NOTHING_TYPE_ARGUMENT_IN_RETURN_POSITION") class GetTest { class Get { @Test