about summary refs log tree commit diff
path: root/src/test/codegen/scalar-function-call.cc
blob: 91ed882f68a9f57096314ca6be12ae3a42df18d6 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdlib.h>

size_t foo(size_t x) {
    return x * x;
}

extern "C"
void test() {
    size_t x = foo(10);
}