aboutsummaryrefslogtreecommitdiff
path: root/tests/core/cgo/provide_external_symbol.go
blob: 68d9fce1e08ab9d2c2e695d7429c48ecc709ef35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package main

import "C"

import "github.com/bazelbuild/rules_go/tests/core/cgo/use_external_symbol"

//export external_symbol
func external_symbol() {}

func main() {
	use_external_symbol.UseExternalSymbol()
}