blob: 43d0b92872a702425ea09978e24bbea7706fe5db [file] [log] [blame]
Nemanja Ivanovicdb64e7e2019-02-05 12:05:53 +00001// RUN: %clang_cc1 -std=c++14 -fsyntax-only -verify -pedantic -triple aarch64-linux-gnu %s
Tim Northover36bb6d52017-12-09 12:09:54 +00002float a = 1.0h; // expected-error{{no matching literal operator for call to 'operator""h' with argument of type 'long double' or 'const char *', and no matching literal operator template}}
Anastasia Stulova5c1a2c52016-02-17 11:34:37 +00003float b = 1.0H; // expected-error{{invalid suffix 'H' on floating constant}}
Sjoerd Meijercc623ad2017-09-08 15:15:00 +00004
5_Float16 c = 1.f166; // expected-error{{invalid suffix 'f166' on floating constant}}
6_Float16 d = 1.f1; // expected-error{{invalid suffix 'f1' on floating constant}}