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