Skip to content

Commit feeed0b

Browse files
Fixes issue #11004
1 parent d6d0590 commit feeed0b

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

src/librustc_typeck/check/mod.rs

+4
Original file line numberDiff line numberDiff line change
@@ -3000,6 +3000,10 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
30003000
but no field with that name was found",
30013001
field.node, actual)
30023002
}, expr_t);
3003+
if let ty::TyRawPtr(..) = expr_t.sty {
3004+
err.note(&format!("`{0}` is a native pointer; perhaps you need to deref with \
3005+
`(*{0}).{1}`", pprust::expr_to_string(base), field.node));
3006+
}
30033007
if let ty::TyStruct(def, _) = expr_t.sty {
30043008
Self::suggest_field_names(&mut err, def.struct_variant(), field, vec![]);
30053009
}

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

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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+
use std::mem;
12+
13+
struct A { x: i32, y: f64 }
14+
15+
#[cfg(not(works))]
16+
unsafe fn access(n:*mut A) -> (i32, f64) {
17+
let x : i32 = n.x; //~ ERROR attempted access of field `x`
18+
//~| NOTE `n` is a native pointer; perhaps you need to deref with `(*n).x`
19+
let y : f64 = n.y; //~ ERROR attempted access of field `y`
20+
//~| NOTE `n` is a native pointer; perhaps you need to deref with `(*n).y`
21+
(x, y)
22+
}
23+
24+
#[cfg(works)]
25+
unsafe fn access(n:*mut A) -> (i32, f64) {
26+
let x : i32 = (*n).x;
27+
let y : f64 = (*n).y;
28+
(x, y)
29+
}
30+
31+
fn main() {
32+
let a : A = A { x: 3, y: 3.14 };
33+
let p : &A = &a;
34+
let (x,y) = unsafe {
35+
let n : *mut A = mem::transmute(p);
36+
access(n)
37+
};
38+
println!("x: {}, y: {}", x, y);
39+
}

0 commit comments

Comments
 (0)