Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / analysis-tests / red-togreenptr-initializer-cast.cpp
1 #include "jstypes.h"
2
3 JS_REQUIRES_STACK void RedFunc();
4
5 typedef void (*GreenFuncPtr)(int);
6
7 GreenFuncPtr gfpa = (GreenFuncPtr) RedFunc;