aboutsummaryrefslogtreecommitdiff
path: root/test/typeparam/genembed2.go
blob: f75731fd519e51e1b241aeb3f82cb006c87108bc (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// run

// 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.

// Test for declaration and use of a parameterized embedded field.

package main

import (
	"fmt"
	"sync"
)

type MyStruct[T any] struct {
	val T
}

type Lockable[T any] struct {
	MyStruct[T]
	mu sync.Mutex
}

// Get returns the value stored in a Lockable.
func (l *Lockable[T]) Get() T {
	l.mu.Lock()
	defer l.mu.Unlock()
	return l.MyStruct.val
}

// Set sets the value in a Lockable.
func (l *Lockable[T]) Set(v T) {
	l.mu.Lock()
	defer l.mu.Unlock()
	l.MyStruct = MyStruct[T]{v}
}

func main() {
	var li Lockable[int]

	li.Set(5)
	if got, want := li.Get(), 5; got != want {
		panic(fmt.Sprintf("got %d, want %d", got, want))
	}
}