aboutsummaryrefslogtreecommitdiffhomepage
path: root/cgo/testdata/errors.go
blob: 75828ce0f193d83e39c48f35d7eab5159dd4a06b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package main

/*
#warning some warning

typedef struct {
	int x;
	int y;
} point_t;

typedef someType noType; // undefined type

#define SOME_CONST_1 5) // invalid const syntax
#define SOME_CONST_2 6) // const not used (so no error)
#define SOME_CONST_3 1234 // const too large for byte
#define   SOME_CONST_b      3   ) // const with lots of weird whitespace (to test error locations)
#  define SOME_CONST_startspace 3)
*/
//
//
// #define SOME_CONST_4 8) // after some empty lines
// #cgo CFLAGS: -DSOME_PARAM_CONST_invalid=3/+3
// #cgo CFLAGS: -DSOME_PARAM_CONST_valid=3+4
import "C"

// #warning another warning
import "C"

// #define add(a, b) (a+b)
// #define add_toomuch add(1, 2, 3)
// #define add_toolittle add(1)
import "C"

// Make sure that errors for the following lines won't change with future
// additions to the CGo preamble.
//
//line errors.go:100
var (
	// constant too large
	_ C.char = 2 << 10

	// z member does not exist
	_ C.point_t = C.point_t{z: 3}

	// constant has syntax error
	_ = C.SOME_CONST_1

	_ byte = C.SOME_CONST_3

	_ = C.SOME_CONST_4

	_ = C.SOME_CONST_b

	_ = C.SOME_CONST_startspace

	// constants passed by a command line parameter
	_ = C.SOME_PARAM_CONST_invalid
	_ = C.SOME_PARAM_CONST_valid

	_ = C.add_toomuch
	_ = C.add_toolittle
)