diff options
| author | Patrick Walton <[email protected]> | 2011-04-22 12:08:23 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2011-04-22 12:09:09 -0700 |
| commit | c1335510d505ade8d1f2805ebf1a2beb5db8de07 (patch) | |
| tree | 647eb89ac2477e059fba17bdb76ca050eaab04a9 /src/comp/front | |
| parent | Dispose the module. (diff) | |
| download | rust-c1335510d505ade8d1f2805ebf1a2beb5db8de07.tar.xz rust-c1335510d505ade8d1f2805ebf1a2beb5db8de07.zip | |
rustc: Eliminate the direct use of ty.t.struct
Diffstat (limited to 'src/comp/front')
| -rw-r--r-- | src/comp/front/creader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/creader.rs b/src/comp/front/creader.rs index febde3fd..e37b6913 100644 --- a/src/comp/front/creader.rs +++ b/src/comp/front/creader.rs @@ -546,7 +546,7 @@ fn get_tag_variants(session.session sess, auto item = find_item(did._1, items); auto ctor_ty = item_type(item, external_crate_id, tystore); let vec[@ty.t] arg_tys = vec(); - alt (ctor_ty.struct) { + alt (ty.struct(ctor_ty)) { case (ty.ty_fn(_, ?args, _)) { for (ty.arg a in args) { arg_tys += vec(a.ty); |