8 fun <bold>Any</bold>.extensionFun() { (in extensionFun() on Any)
3 	KotlinUtil.extensionFun(<bold>"x"</bold>);
11 	fun <bold>String</bold>.foo() { (in foo() on String)
24 		<bold>"A"</bold>.foo() (in main())
12 	<bold>""</bold>.extensionFun() (in foo() on String)
14 	<bold>1</bold>.extensionFun() (in foo() on String)
18 	[LAMBDA CALLS RECEIVER] with(123) <bold>{</bold> (in foo() on String)
LIB 		(INLINE CALL with) [LAMBDA CALLS RECEIVER] public inline fun <T, R> with(receiver: T, <bold>block: T.() -> R</bold>): R { (in with(T, T.() -> R))
LIB 			(INLINE CALL with) return <bold>receiver</bold>.block() (in with(T, T.() -> R))
LIB 				(INLINE CALL with) public inline fun <T, R> with(<bold>receiver: T</bold>, block: T.() -> R): R { (in with(T, T.() -> R))
18 					with(<bold>123</bold>) { (in foo() on String)
