Files
kotlin-fork/kotlin-native/backend.native/tests/interop/forwardDeclarations/cForwardDeclarations.def
T
2023-01-30 11:00:30 +00:00

12 lines
207 B
Modula-2

---
struct StructDeclared;
struct StructDefined { int x; };
int useStructDeclared(struct StructDeclared* declared) {
return -1;
}
int useStructDefined(struct StructDefined* defined) {
return -2;
}