Revert "Fix conversion of float literals in TtTreeSink"
This reverts commit 43a066c5a8.
This commit is contained in:
@@ -183,22 +183,18 @@ fn float_literal_in_tt() {
|
||||
macro_rules! constant {
|
||||
($( $ret:expr; )*) => {};
|
||||
}
|
||||
|
||||
macro_rules! float_const_impl {
|
||||
() => ( constant!(0.3; 3.3;); );
|
||||
}
|
||||
|
||||
float_const_impl! {}
|
||||
"#,
|
||||
expect![[r#"
|
||||
macro_rules! constant {
|
||||
($( $ret:expr; )*) => {};
|
||||
}
|
||||
|
||||
macro_rules! float_const_impl {
|
||||
() => ( constant!(0.3; 3.3;); );
|
||||
}
|
||||
|
||||
constant!(0.3;
|
||||
3.3;
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user