mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
122 B
Kotlin
12 lines
122 B
Kotlin
import java.io.Serializable
|
|
|
|
class A {
|
|
class X : Serializable {
|
|
}
|
|
}
|
|
|
|
class B {
|
|
inner class X : Serializable {
|
|
}
|
|
}
|