PR-URL: https://github.com/nodejs/node/pull/57683 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
9 lines
77 B
C++
9 lines
77 B
C++
#include "test.h"
|
|
|
|
int main() {
|
|
return foo();
|
|
}
|
|
|
|
int foo() {
|
|
return 0;
|
|
}
|