/* * Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license * that can be found in the LICENSE file. */ package serialization.deserialized_listof0 import kotlin.test.* fun test_arrayList() { val l = listOf(1, 2, 3) val m = listOf() val n = l + m println(n) } fun test_arrayList2(x: T, y: T, z: T) { val l = listOf(x, y, z) val m = listOf() val n = m + l println(l) } fun test_arrayList3() { val l = listOf() val m = listOf("a", "b", "c") val n = l + m println(n) } @Test fun runTest() { test_arrayList() test_arrayList2(5, 6, 7) test_arrayList2("a", "b", "c") test_arrayList3() }