mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-03-13 12:34:29 +00:00
11 lines
127 B
Plaintext
11 lines
127 B
Plaintext
struct S {
|
|
int i;
|
|
double d;
|
|
};
|
|
|
|
sync protocol Struct {
|
|
parent:
|
|
sync test(S s) returns (S ss);
|
|
__delete__();
|
|
};
|