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

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

typedef inst = tmpl[](20);

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