﻿id	summary	reporter	owner	description	type	status	priority	component	version	resolution	keywords	cc
269	Wrong type for generics' implicit _sizeof params on 32-bit	mlbrooks		"{{{
forall(T)
void fred( T x ) {
    printf( ""%zu\n"", sizeof(T) );
    printf( ""%zu\n"", sizeof(x) );
}
int main() {
    char c = 'x';
    fred(c);
}
}}}

Compiling as
{{{
cfa -Wall -Werror x.cfa
}}}

Expected, actual on plg2: runs and prints `1` twice.

Actual on ruby: compilation error (twice): format ‘%zu’ expects argument of type ‘size_t’, but argument 2 has type ‘long unsigned int’

(Found by Peter, whittled by Mike.)
"	defect	new	major	cfa-cc	1.0			
