2018-12-17 03:21:47 +00:00
|
|
|
struct X(());
|
|
|
|
impl X {
|
2013-09-02 13:30:00 +00:00
|
|
|
pub unsafe fn with(&self) { }
|
2012-12-07 00:13:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2018-12-17 03:21:47 +00:00
|
|
|
X(()).with(); //~ ERROR requires unsafe function or block
|
2012-12-07 00:13:40 +00:00
|
|
|
}
|