// Code generated by cmd/cgo; DO NOT EDIT.

//line /home/evie/packages/go/go-1.18-0/go/misc/cgo/errors/testdata/issue33061.go:1:1
// Copyright 2019 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.

// cgo shouldn't crash if there is an extra argument with a C reference.

package main

// void F(void* p) {};
import _ "unsafe"

import "unsafe"

func F() {
	var i int
	( /*line :16:2*/_Cfunc_F /*line :16:4*/)(unsafe.Pointer(&i),  /*line :16:26*/_Ctype_int /*line :16:31*/(0)) // ERROR HERE
}
