summaryrefslogtreecommitdiff
path: root/test cases/d/10 d cpp/cppmain.cpp
blob: aeddf56e8edb46408934bc4fe54ff159dd56b6d9 (plain)
1
2
3
4
5
6
extern void print_hello(int i);

int main(int, char**) {
    print_hello(1);
    return 0;
}