Test no psi stub mismatch for light classes with suspend in overloads

IdeCompiledLightClassTestGenerated is relevant.
This commit is contained in:
Nikolay Krasko
2017-09-11 15:17:40 +03:00
parent 74043089ab
commit 94e3a51a45
5 changed files with 33 additions and 0 deletions
@@ -0,0 +1,8 @@
// A
class A {
fun foo(p1: P?, p2: P?) {}
fun foo(listener: suspend RS.(P?, P?) -> Unit) {}
}
interface P
interface RS