Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Commit 4a4c7b5

Browse files
committed
Test interface declarations.
1 parent 6af20fb commit 4a4c7b5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
interface I {
2+
void f();
3+
}
4+
class A implements I {}
5+
// ^ defined: 1
6+
interface J extends I {}
7+
// ^ defined: 1

0 commit comments

Comments
 (0)