blob: 0679022d37a9879309d3054288928148a5d9a050 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Regression test for issue #374
use std;
import option;
import option::none;
enum sty { ty_nil, }
type raw_t = {struct: sty, cname: option<str>, hash: uint};
fn mk_raw_ty(st: sty, cname: option<str>) -> raw_t {
ret {struct: st, cname: cname, hash: 0u};
}
fn main() { mk_raw_ty(ty_nil, none::<str>); }
|