// This program should print “Nested instance” class Nested { method() { fun function() { print this; } function(); } } Nested().method();