This code should compile ``` class Foo { fun v...
# getting-started
a
This code should compile
Copy code
class Foo {
    fun verify(password: String) = Observable.just(password == "password")
    fun referenceTest() = Observable.just("password").flatMap(this::verify)
}