<@U0AAQKT9Q> If I just break it down to this ```...
# getting-started
p
@ilya.gorbunov If I just break it down to this
Copy code
fut1.compose<Void>({ v-> 
       val fut2 = Future.future<Void>()
       println("Step 1")
       fs.writeFile(file, Buffer.buffer("Hello World!"), fut2.completer())
       fut2
   })
IntelliJ throws up the error
Copy code
Type Mismatch:

Required: Function<Void!, Future<Void!>!>!
Found: ??? -> Future<Void!>!