Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
staticFields
/
kt3698.java
blob: 1dd875c56ac34e591a05d0d45767ea56dc281c4f [
file
] [
log
] [
blame
]
package
test
;
public
class
kt3698
{
@interface
Foo
{
int
value
();
}
@Foo
(
KotlinClass
.
FOO
)
// Error here
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
KotlinClass
.
FOO
);
}
}