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

//line /home/evie/packages/go/go-1.18-0/go/misc/cgo/test/typeparam.go:1:1
// Copyright 2021 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.

package cgotest

// #include <stddef.h>
import _ "unsafe"

func generic[T, U any](t T, u U) {}

func useGeneric() {
	const zero  /*line :13:13*/_Ctype_size_t /*line :13:21*/ = 0

	generic(zero, zero)
	generic[ /*line :16:10*/_Ctype_size_t /*line :16:18*/,  /*line :16:20*/_Ctype_size_t /*line :16:28*/](0, 0)
}
