aboutsummaryrefslogtreecommitdiff
path: root/tests/xfail/val.c
blob: d231a4a39891dd4ac5f85816445046305db40a11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>

typedef tmpl[](int v){
	int <>_ok()
	{
		return v;
	}
};

/* float vs int, should fail */
typedef inst = tmpl[](20.0);

int main()
{
	int ok = inst_ok();
	if (ok == 20)
		puts("OK");
}