summaryrefslogtreecommitdiff
path: root/js/src/analysis-tests/red-togreenptr-initializer-array.cpp
blob: 8e3ec186e7fc019f17adf065c9b133525a824f15 (plain)
1
2
3
4
5
6
7
8
#include "jstypes.h"

void GreenFunc();
JS_REQUIRES_STACK void RedFunc();

typedef void (*GreenFuncPtr)();

GreenFuncPtr fpa[2] = {GreenFunc, RedFunc};