blob: 6be933b783a1207f4f5ea282b2dad606c8cc41d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package issue45160
func mklink1 /* =@mklink1func */() {}
func _() {
var tests /* =@tests */ = []dirLinkTest /* @dirLinkTest */ {
{
mklink1 /* @mklink1func */: func() {},
mklink2: func(link /* =@link */, target /* =@target */ string) error {
return nil
},
},
}
}
type dirLinkTest /* =@dirLinkTest */ struct {
mklink1 /* =@mklink1field */ func(string, string) error
mklink2 /* =@mklink2field */ func(string, string) error
}
func mklink2 /* =@mklink2func */() {}
|