blob: af906d71f5fe2ccb415341ecc2ca6db660849ca5 [file] [log] [blame] [edit]
//@ revisions: e2015 e2018
//
//@[e2018] edition:2018
#![allow(unused)]
const A: f16 = 10.0; //~ ERROR the type `f16` is unstable
pub fn main() {
let a: f16 = 100.0; //~ ERROR the type `f16` is unstable
let b = 0.0f16; //~ ERROR the type `f16` is unstable
foo(1.23);
}
fn foo(a: f16) {} //~ ERROR the type `f16` is unstable
struct Bar {
a: f16, //~ ERROR the type `f16` is unstable
}