From 2b8ec006403192f1fb6614e8eee63b3743a98889 Mon Sep 17 00:00:00 2001 From: Reinhard Prechtl Date: Wed, 11 Jan 2023 10:23:18 +0100 Subject: [PATCH] Upgrade kotlin to 1.8.0 --- pom.xml | 2 +- src/test/kotlin/de/rpr/demo/strikt/MockKMatchingTest.kt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b4678bd..1af4a8d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 1.8 - 1.3.72 + 1.8.0 diff --git a/src/test/kotlin/de/rpr/demo/strikt/MockKMatchingTest.kt b/src/test/kotlin/de/rpr/demo/strikt/MockKMatchingTest.kt index 93ec1f5..26ca374 100644 --- a/src/test/kotlin/de/rpr/demo/strikt/MockKMatchingTest.kt +++ b/src/test/kotlin/de/rpr/demo/strikt/MockKMatchingTest.kt @@ -39,4 +39,5 @@ class EmailService { class Email(val value: String) -inline class InlineEmail(val value: String) +@JvmInline +value class InlineEmail(val value: String)