]> git.proxmox.com Git - rustc.git/blobdiff - src/libsyntax_ext/concat.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / libsyntax_ext / concat.rs
index 47bade698a80a0ef207e1ede42d8d93a5be09e58..4bf13f37711022663d3b6f8a3f7a444f4f2e1521 100644 (file)
@@ -21,8 +21,7 @@ pub fn expand_concat(
         match e.kind {
             ast::ExprKind::Lit(ref lit) => match lit.kind {
                 ast::LitKind::Str(ref s, _)
-                | ast::LitKind::Float(ref s, _)
-                | ast::LitKind::FloatUnsuffixed(ref s) => {
+                | ast::LitKind::Float(ref s, _) => {
                     accumulator.push_str(&s.as_str());
                 }
                 ast::LitKind::Char(c) => {