ylemoigne
03/28/2018, 9:31 AMsuspend val
? The message in idea seems to contradict themselves : class Test {
suspend val nominal:String = "nominal" // suspend is in red : Modifier 'suspend' is not applicable to 'member property without backing field or delegate'
suspend val foo: String by foo() // suspend is in red : Modifier 'suspend' is not applicable to 'member property with delegate'
suspend fun foo(): String = "foo"
}