﻿id	summary	reporter	owner	description	type	status	priority	component	version	resolution	keywords	cc
160	Constant 0p (NULL) does not work at the global declaration level	pabuhr		"{{{
int & q = *0p; // does not work
int main() {
    int  & q = *0p; // works
}
}}}
The reason the global usage fails is that 0p is a function call, but at the global level, this call must be wrapped into a constructor and it is not wrapped.

Other global function calls are wrapped correctly."	defect	closed	minor	cfa-cc	1.0	fixed		
