One of the issues i have had is with nested object...
# announcements
l
One of the issues i have had is with nested objects for instance
Copy code
if ( foo?.first?.second?.third?.fourth?.fifth != null ) {

}
in this case i will have to type that out if i want to use it in the block, of course i can create a property outside to store it but i just think this is much nicer.
Copy code
if ( val foo1 = foo?.first?.second?.third?.fourth?.fifth ){
}