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

fn main() {
    let a = 10: u8; //~ ERROR type ascription is experimental
}