summaryrefslogtreecommitdiff
path: root/formats/json-tests/commonTest/src/kotlinx/serialization/json/JsonDefaultContextTest.kt
blob: af54c31b0c86372a04364cc07cc9aae3ef682537 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright 2017-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package kotlinx.serialization.json

import kotlin.test.*

class JsonDefaultContextTest {

    @Test
    fun testRepeatedSerializer() {
        // #616
        val json = Json
        Json { serializersModule = json.serializersModule }
    }
}