mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 04:19:13 +00:00
Revert "Fix conversion of float literals in TtTreeSink
"
This reverts commit 43a066c5a8
.
This commit is contained in:
parent
4fcdb96789
commit
bde036b74e
2 changed files with 0 additions and 54 deletions
|
@ -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;
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue