summaryrefslogtreecommitdiffstats
path: root/tests/ui/feature-gates/feature-gate-type_ascription.rs
blob: 5c3f0e37df63dfd57f5169ade9ba23247f62581a (plain)
1
2
3
4
5
// Type ascription is unstable

fn main() {
    let a = type_ascribe!(10, u8); //~ ERROR use of unstable library feature 'type_ascription': placeholder syntax for type ascription
}