about summary refs log tree commit diff
path: root/tests/ui/feature-gates/feature-gate-optimize_attribute.rs
blob: ed5a11270f83ea20b7e7008e79fa2cfc1dbf6e90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![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(none)] //~ ERROR the `#[optimize]` attribute is an experimental feature
fn none() {}

#[optimize(banana)]
//~^ ERROR the `#[optimize]` attribute is an experimental feature
//~| ERROR malformed `optimize` attribute input [E0539]
fn not_known() {}