blob: 4f0b2e685f2902ec26a396f785942435b2059aad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright (C) 2023 Luke Shumaker <lukeshu@lukeshu.com>
//
// SPDX-License-Identifier: GPL-2.0-or-later
package containers_test
import (
"net/netip"
"git.lukeshu.com/btrfs-progs-ng/lib/containers"
)
var _ containers.Ordered[netip.Addr] = netip.Addr{}
|