Skip to content

Commit a29c49f

Browse files
authored
Auto merge of #37095 - petrochenkov:metactor, r=alexcrichton
Temporary fix for metadata decoding for struct constructors Same as #37078, but for nightly. Ideally, metadata lookup functions should "just work" for constructor ids, but this fixes the issue as well. Fixes #37026 r? @alexcrichton
2 parents 0b2c356 + f5827d0 commit a29c49f

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

src/librustc/ty/mod.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -2323,7 +2323,11 @@ impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
23232323
let enum_did = self.parent_def_id(did).unwrap();
23242324
self.lookup_adt_def(enum_did).variant_with_id(did)
23252325
}
2326-
Def::Struct(did) | Def::StructCtor(did, ..) | Def::Union(did) => {
2326+
Def::Struct(did) | Def::Union(did) => {
2327+
self.lookup_adt_def(did).struct_variant()
2328+
}
2329+
Def::StructCtor(ctor_did, ..) => {
2330+
let did = self.parent_def_id(ctor_did).expect("struct ctor has no parent");
23272331
self.lookup_adt_def(did).struct_variant()
23282332
}
23292333
_ => bug!("expect_variant_def used with unexpected def {:?}", def)

src/test/compile-fail/issue-37026.rs

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// aux-build:empty-struct.rs
12+
13+
extern crate empty_struct;
14+
15+
fn main() {
16+
let empty_struct::XEmpty2 = (); //~ ERROR mismatched types
17+
let empty_struct::XEmpty6(..) = (); //~ ERROR mismatched types
18+
}

0 commit comments

Comments
 (0)