Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
unsafe
/
issue-3080.rs
blob: 883f3bfd24e8345c1b7ca92987080a847f262ae0 [
file
] [
log
] [
blame
] [
edit
]
struct
X
(());
impl
X
{
pub
unsafe
fn
with
(&
self
)
{
}
}
fn
main
()
{
X
(()).
with
();
//~ ERROR requires unsafe function or block
}