mirror of
https://github.com/golang/go
synced 2024-11-05 15:26:15 -07:00
ea7d9e6a52
fixes #18707. Change-Id: Ibc4efef01197799f66d10bfead22faf8ac00473c Reviewed-on: https://go-review.googlesource.com/35452 Run-TryBot: Bryan Mills <bcmills@google.com> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
13 lines
303 B
Go
13 lines
303 B
Go
// Copyright 2017 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.
|
|
|
|
// This program segfaulted during libpreinit when built with -msan:
|
|
// http://golang.org/issue/18707
|
|
|
|
package main
|
|
|
|
import "C"
|
|
|
|
func main() {}
|