2011-05-14 12:29:11 -05:00
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
|
|
|
|
// Regression test for issue #374
|
2011-05-14 02:21:08 -05:00
|
|
|
use std;
|
2011-12-13 18:25:51 -06:00
|
|
|
import option;
|
|
|
|
import option::none;
|
2011-05-14 02:21:08 -05:00
|
|
|
|
2012-01-19 20:31:08 -06:00
|
|
|
enum sty { ty_nil, }
|
2011-05-14 02:21:08 -05:00
|
|
|
|
2012-01-31 19:05:20 -06:00
|
|
|
type raw_t = {struct: sty, cname: option<str>, hash: uint};
|
2011-05-14 02:21:08 -05:00
|
|
|
|
2012-01-31 19:05:20 -06:00
|
|
|
fn mk_raw_ty(st: sty, cname: option<str>) -> raw_t {
|
2011-07-27 07:19:39 -05:00
|
|
|
ret {struct: st, cname: cname, hash: 0u};
|
2011-05-14 02:21:08 -05:00
|
|
|
}
|
|
|
|
|
2011-08-13 02:10:18 -05:00
|
|
|
fn main() { mk_raw_ty(ty_nil, none::<str>); }
|