1*fd3a827eSAlex Crichtonpackage foo:foo;
241417d9eSAlex Crichton
32329ecc3SAlex Crichtoninterface strings {
4*fd3a827eSAlex Crichton  a: func(x: string);
5*fd3a827eSAlex Crichton  b: func() -> string;
6*fd3a827eSAlex Crichton  c: func(a: string, b: string) -> string;
72329ecc3SAlex Crichton}
82329ecc3SAlex Crichton
941417d9eSAlex Crichtonworld the-world {
10*fd3a827eSAlex Crichton  import strings;
11*fd3a827eSAlex Crichton  export strings;
122329ecc3SAlex Crichton}
13