]> git.proxmox.com Git - rustc.git/blame - src/test/ui/feature-gates/feature-gate-type_ascription.rs
New upstream version 1.39.0+dfsg1
[rustc.git] / src / test / ui / feature-gates / feature-gate-type_ascription.rs
CommitLineData
e1599b0c 1// Type ascription is unstable
223e47cc 2
9cc50fc6
SL
3fn main() {
4 let a = 10: u8; //~ ERROR type ascription is experimental
92a42be0 5}