Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
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
}