about summary refs log tree commit diff
path: root/src/test/ui/attr-usage-inline.rs
blob: 1996f4a692c187d852fa028ff952f5f193b64e6a (plain)
1
2
3
4
5
6
7
8
9
#![allow(dead_code)]

#[inline]
fn f() {}

#[inline] //~ ERROR: attribute should be applied to function or closure
struct S;

fn main() {}