summaryrefslogtreecommitdiff
path: root/libgo/misc/cgo/testplugin/src/plugin1/plugin1.go
blob: edcef2c77e9167fa6548b534bafc0d9dc2c4a319 (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
// Copyright 2016 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 main

// // No C code required.
import "C"

import "common"

func F() int {
	_ = make([]byte, 1<<21) // trigger stack unwind, Issue #18190.
	return 3
}

func ReadCommonX() int {
	return common.X
}

var Seven int

func call(fn func()) {
	fn()
}

func g() {
	common.X *= Seven
}

func init() {
	Seven = 7
	call(g)
}

func main() {
	panic("plugin1.main called")
}