summaryrefslogtreecommitdiff
path: root/src/tests/eolian/data/typedef.eo
blob: 4044740c34e7bdf101f42e3ec2281e2205c6a951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 */
      }
   }
}