rust/tests/ui/deprecation/deprecated_no_stack_check.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
107 B
Rust
Raw Normal View History

#![deny(warnings)]
#![feature(no_stack_check)]
2018-12-25 09:56:47 -06:00
//~^ ERROR: feature has been removed [E0557]
fn main() {
}