Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / analysis-tests / green-callred.cpp
1 #include "jstypes.h"
2
3 #ifndef NS_STATIC_CHECKING
4 #error Running this without NS_STATIC_CHECKING is silly
5 #endif
6
7 JS_REQUIRES_STACK void RedFunc();
8
9 void GreenFunc()
10 {
11   RedFunc();
12 }