blob: 96bf8a0bd6e9ddc980f672ca5dc5792e0984ab0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause
//go:generate go run tailscale.com/cmd/cloner -clonefunc=true -type SliceContainer
// Package clonerex is an example package for the cloner tool.
package clonerex
type SliceContainer struct {
Slice []*int
}
|