summaryrefslogtreecommitdiff
path: root/gcc/testsuite/treelang/compile/mismatch.tree
blob: 7c62cd35b0d5e10aef12160c5f783fe53273fb10 (plain)
1
2
3
4
5
6
7
8
// { dg-do compile }
static int bar ();
static void barf ();

bar {
	barf (1); // { dg-error "mismatch" "barf" }
	return -12;
}