about summary refs log tree commit diff
path: root/tests/ui/feature-gates/feature-gate-optimize_attribute.rs
blob: 77cc307c9f4539f492440b6ae10923d68cf7f68c (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 E0722
fn not_known() {}