How to do lazy delegates in M13?

I can't quite figure out how to do a lazy evaluation delegate in M13.

Before I liked to do things like

val x: Dummy by Delegates.lazy { makeDummy() }

How do I do that now?

You don't need `Delegates`.

val x: Dummy by lazy { makeDummy() }