1 /* 2 * Copyright 2017-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 5 package kotlinx.serialization.json 6 7 import kotlin.test.* 8 9 class JsonDefaultContextTest { 10 11 @Test testRepeatedSerializernull12 fun testRepeatedSerializer() { 13 // #616 14 val json = Json 15 Json { serializersModule = json.serializersModule } 16 } 17 } 18