efl/src/tests/eolian/data/typedef.eo

14 lines
285 B
Plaintext

type Evas.Coord: int; /* Simple type definition */
type List_Objects: own(list<Eo *>*); /* A little more complex */
class Typedef {
methods {
foo {
params {
int idx;
}
return: own(char*); /*@ comment for method return */
}
}
}