// !WITH_NEW_INFERENCE // !LANGUAGE: +NewInference // MODULE: m1-common // FILE: test.kt import library.* fun test() { foo( a = 42, b = "hello", c = true ) Foo( a = 42, b = "hello", c = true ).foo( a = 42, b = "hello", c = true ) Foo( a = 42, b = "hello", c = true, 3.14 ) Foo.Bar( a = 42, b = "hello", c = true ).bar( a = 42, b = "hello", c = true ) Foo.Bar( a = 42, b = "hello", c = true, 3.14 ) }