diff --git a/src/test/codegen/noalias-rwlockreadguard.rs b/src/test/codegen/noalias-rwlockreadguard.rs index f9a2cc759eb57..7f7b46c85a8b0 100644 --- a/src/test/codegen/noalias-rwlockreadguard.rs +++ b/src/test/codegen/noalias-rwlockreadguard.rs @@ -2,14 +2,13 @@ #![crate_type = "lib"] -use std::cell::UnsafeCell; -use std::sync::RwLockReadGuard; +use std::sync::{RwLock, RwLockReadGuard}; // Make sure that `RwLockReadGuard` does not get a `noalias` attribute, because -// the `UnsafeCell` might alias writes after it is dropped. +// the `RwLock` might alias writes after it is dropped. // CHECK-LABEL: @maybe_aliased( // CHECK-NOT: noalias // CHECK-SAME: %_data #[no_mangle] -pub unsafe fn maybe_aliased(_: RwLockReadGuard<'_, i32>, _data: &UnsafeCell) {} +pub unsafe fn maybe_aliased(_: RwLockReadGuard<'_, i32>, _data: &RwLock) {}