Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
nullabilityAnnotations
/
PrivateInClass.kt
blob: b6b0bc50365b995a007c12abfd245bd23148b890 [
file
]
// PrivateInClass
class
PrivateInClass
private
constructor
(
g
:
String
?)
{
private
var
nn
:
String
get
()
=
""
set
(
value
)
{}
private
val n
:
String
?
get
()
=
""
private
fun bar
(
a
:
String
,
b
:
String
?):
String
?
=
null
}