mirror of
https://github.com/golang/go
synced 2024-11-17 10:04:43 -07:00
a766d8e59c
Fixes #13635. Change-Id: Icab4a45567f435f002a8f6c85db9538acf054a70 Reviewed-on: https://go-review.googlesource.com/17863 Run-TryBot: Minux Ma <minux@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
25 lines
685 B
Go
25 lines
685 B
Go
// Copyright 2015 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.
|
|
|
|
// issue 13635: used to output error about C.unsignedchar.
|
|
// This test tests all such types.
|
|
|
|
package pkg
|
|
|
|
import "C"
|
|
|
|
func main() {
|
|
var (
|
|
_ C.uchar = "uc" // ERROR HERE
|
|
_ C.schar = "sc" // ERROR HERE
|
|
_ C.ushort = "us" // ERROR HERE
|
|
_ C.uint = "ui" // ERROR HERE
|
|
_ C.ulong = "ul" // ERROR HERE
|
|
_ C.longlong = "ll" // ERROR HERE
|
|
_ C.ulonglong = "ull" // ERROR HERE
|
|
_ C.complexfloat = "cf" // ERROR HERE
|
|
_ C.complexdouble = "cd" // ERROR HERE
|
|
)
|
|
}
|