* tree-vect-loop-manip.c (vect_do_peeling): Do not use
[official-gcc.git] / libgo / misc / cgo / test / issue20266.go
blob9f95086cc7bdbc6837ad40bf17faac44ea139cf5
1 // Copyright 2017 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 // Issue 20266: use -I with a relative path.
7 package cgotest
9 /*
10 #cgo CFLAGS: -I issue20266 -Iissue20266 -Ddef20266
11 #include "issue20266.h"
13 import "C"
15 import "testing"
17 func test20266(t *testing.T) {
18 if got, want := C.issue20266, 20266; got != want {
19 t.Errorf("got %d, want %d", got, want)