mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 21:47:04 +00:00
13 lines
340 B
Rust
13 lines
340 B
Rust
#![crate_type="rlib"]
|
|
|
|
#[optimize(size)] //~ ERROR the `#[optimize]` attribute is an experimental feature
|
|
fn size() {}
|
|
|
|
#[optimize(speed)] //~ ERROR the `#[optimize]` attribute is an experimental feature
|
|
fn speed() {}
|
|
|
|
#[optimize(banana)]
|
|
//~^ ERROR the `#[optimize]` attribute is an experimental feature
|
|
//~| ERROR E0722
|
|
fn not_known() {}
|