summaryrefslogtreecommitdiffstats
path: root/tests/diagnostics/call-argument-type.slang
blob: 93446265dfeaf3e28620c876fbd5e232dceb9442 (plain)
1
2
3
4
5
6
7
8
9
10
11
//DIAGNOSTIC_TEST(smoke):SIMPLE:
// call function with wrong argument type

struct A {};
struct B {};

void f(A a) {}
void g(B b)
{
	f(b);
}