utf8_identifiers test has been changed to narrow it's scope. This change
means the test does not cover the unsuffixed float anymore and we aim to
fix that with a new separate test.
gcc/testsuite/ChangeLog:
* rust/compile/float_literals.rs: New test.
Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
--- /dev/null
+#![feature(no_core)]
+#![no_core]
+
+pub fn f() {
+ let _ = 0.;
+ let _ = 159.;
+ let _ = 0.0;
+ let _ = 159.0;
+ let _ = 0.0f32;
+ let _ = 159.0f32;
+ let _ = 0_0.0f32;
+ let _ = 0_159.0f32;
+}