mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
parent
78edd4f3a0
commit
0706ac0fae
@ -105,6 +105,7 @@ pub mod front {
|
||||
}
|
||||
|
||||
pub mod middle {
|
||||
pub mod expr_use_visitor; // STAGE0: increase glitch immunity
|
||||
pub mod astconv_util;
|
||||
pub mod astencode;
|
||||
pub mod cfg;
|
||||
@ -122,7 +123,6 @@ pub mod middle {
|
||||
pub mod dependency_format;
|
||||
pub mod effect;
|
||||
pub mod entry;
|
||||
pub mod expr_use_visitor;
|
||||
pub mod free_region;
|
||||
pub mod intrinsicck;
|
||||
pub mod infer;
|
||||
|
@ -151,7 +151,7 @@ impl<'a, 'tcx, 'v> Visitor<'v> for EffectCheckVisitor<'a, 'tcx> {
|
||||
}
|
||||
}
|
||||
hir::ExprCall(ref base, _) => {
|
||||
let base_type = self.tcx.node_id_to_type(base.id);
|
||||
let base_type = self.tcx.expr_ty_adjusted(base);
|
||||
debug!("effect: call case, base type is {:?}",
|
||||
base_type);
|
||||
if type_is_unsafe_function(base_type) {
|
||||
@ -159,7 +159,7 @@ impl<'a, 'tcx, 'v> Visitor<'v> for EffectCheckVisitor<'a, 'tcx> {
|
||||
}
|
||||
}
|
||||
hir::ExprUnary(hir::UnDeref, ref base) => {
|
||||
let base_type = self.tcx.node_id_to_type(base.id);
|
||||
let base_type = self.tcx.expr_ty_adjusted(base);
|
||||
debug!("effect: unary case, base type is {:?}",
|
||||
base_type);
|
||||
if let ty::TyRawPtr(_) = base_type.sty {
|
||||
|
15
src/test/compile-fail/issue-28776.rs
Normal file
15
src/test/compile-fail/issue-28776.rs
Normal file
@ -0,0 +1,15 @@
|
||||
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// http://rust-lang.org/COPYRIGHT.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
use std::ptr;
|
||||
|
||||
fn main() {
|
||||
(&ptr::write)(1 as *mut _, 42); //~ ERROR E0133
|
||||
}
|
Loading…
Reference in New Issue
Block a user