Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
override
/
AbstractValImplemented.kt
blob: c76bafce19427a42c88d9f0ce53fb0462dbb30d7 [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
abstract
class
A
{
abstract
val i
:
Int
}
class
B
()
:
A
()
{
override
val i
=
1
}