it seems like the kotlin compiler doesn't mind if ...
# announcements
h
it seems like the kotlin compiler doesn't mind if
operator fun MyDelegate.setValue()
returns a type other than
Unit
(for use with delegated properties). does that mean the setter generated in JVM bytecode will also return something? even though this isn't something the compiler normally allows with a non-delegated property setter?