1package main
2
3func linefrompc()
4func pcfromline()
5
6func main() {
7	// Prevent GC of our test symbols
8	linefrompc()
9	pcfromline()
10}
11