Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e85e85a29bad338b6288c840b32adcbb7ee2f34
/
.
/
idea
/
testData
/
resolve
/
referenceWithLib
/
overridingFunctionWithSamAdapterSrc
/
Test.java
blob: 25d50182e86e9fbb88c39a5ddef641f7b85b9168 [
file
]
package
test
;
public
class
Test
{
public
interface
Action
{
String
doSmth
(
String
other
);
}
void
act
(
Action
action
)
{
}
}