Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / analysis-tests / green-callredptr.cpp
1 #include "jstypes.h"
2
3 typedef void (JS_REQUIRES_STACK *RedFuncPtr)();
4
5 void GreenFunc(RedFuncPtr f)
6 {
7   f();
8 }