mirror of
https://github.com/golang/go
synced 2024-11-19 09:34:52 -07:00
10 lines
152 B
Go
10 lines
152 B
Go
|
package unimported_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestSomething(t *testing.T) {
|
||
|
_ = unimported.TestExport //@unimported("TestExport", testexport)
|
||
|
}
|