summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/staticlib/src/main.cpp
blob: af2c328ebe4469df290c9a9487862eb9e28d5e57 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>
import mod;

int main() {
    printf("%d\n", mod::foo());
    return 0;
}