xref: /aosp_15_r20/external/dokka/core/testdata/javadoc/companionMethodReference.kt (revision 1b2d298c530bf0473cc943e8414a5ff577a994bc)
1 package foo
2 
3 
4 /**
5  * Linking to [test]
6  */
7 class TestClass {
8 
9     companion object {
10 
testnull11         @JvmStatic fun test(arg: String) {}
12     }
13 }