Files
lib_compiler/tests/test_import_std/main/main.lc
2024-04-13 15:29:53 +02:00

14 lines
179 B
Plaintext

import "std_types";
import "libc";
#`
#include <limits.h>
#include <stdint.h>
#include <stddef.h>
`;
main :: proc(): int {
TestSizes();
a: u64 = 0;
return :int(a);
}