mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-20 13:42:23 +00:00
16 lines
245 B
Go
16 lines
245 B
Go
package testing
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestT(t *testing.T) {
|
|
testTFunc(t) // Just verify this doesn't give a compiler error
|
|
}
|
|
|
|
func TestRuntimeT(t *testing.T) {
|
|
var _ T = new(RuntimeT) // Another compiler check
|
|
}
|
|
|
|
func testTFunc(t T) {}
|