Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
annotations
/
CustomAnnotationWithDefaultParameter.java
blob: 7419181df872642498d33aedfc75bc5b2eaf2307 [
file
] [
log
] [
blame
]
package
test
;
public
interface
CustomAnnotationWithDefaultParameter
{
@MyAnnotation
(
first
=
"f"
,
second
=
"s"
)
public
class
MyTest
{}
public
@interface
MyAnnotation
{
String
first
();
String
second
()
default
(
"s"
);
}
}