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