Anastasia Stulova | 5c1a2c5 | 2016-02-17 11:34:37 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s |
2 | float a = 1.0h; // expected-error{{invalid suffix 'h' on floating constant}} | ||||
3 | float b = 1.0H; // expected-error{{invalid suffix 'H' on floating constant}} | ||||
Sjoerd Meijer | cc623ad | 2017-09-08 15:15:00 +0000 | [diff] [blame] | 4 | |
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}} |