Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
thisAndSuper
/
superInExtensionFunctionCall.kt
blob: faae9b8eb87237d9f062ef2335f2dd4b05589b8f [
file
]
// No supertype at all
fun
Any
.
extension
(
arg
:
Any
?)
{}
class
A1
{
fun test
()
{
<!
SUPER_CANT_BE_EXTENSION_RECEIVER
!>
super
<!>.
extension
(
null
)
// Call to an extension function
}
}