blob: 7476c27ec28b94640ee419803ed5cfb062663cd3 (
plain)
1
2
3
4
5
6
7
8
9
|
package setassign
import "testing"
func TestSetAssign_PackageExists(t *testing.T) {
// Package setassign currently has no exported identifiers.
// This test ensures the package compiles and remains testable.
_ = "setassign"
}
|