* tree-vect-loop-manip.c (vect_do_peeling): Do not use
[official-gcc.git] / libgo / misc / cgo / test / issue4857.go
blobb18979b5f7ac86e64931264c28c2d04d69d356aa
1 // Copyright 2013 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 package cgotest
7 /*
8 #cgo CFLAGS: -Werror
9 const struct { int a; } *issue4857() { return (void *)0; }
11 import "C"
13 func test4857() {
14 _ = C.issue4857()