This website requires JavaScript.
Explore
Help
Register
Sign In
rust-lang
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Actions
1
Packages
Projects
Releases
Wiki
Activity
Files
359bfa901b9d8eddbed7b88b6716dbb77b7bfb95
rust
/
tests
/
ui
/
macros
/
issue-39404.rs
8 lines
105 B
Rust
Raw
Normal View
History
Unescape
Escape
Make sufficiently old or low-impact compatibility lints deny-by-default
2017-06-25 05:30:20 +03:00
#![
allow(unused)
]
Add warning cycle.
2017-02-26 03:25:22 +00:00
Make `missing_fragment_specifier` an unconditional error This was attempted in [1] then reverted in [2] because of fallout. Recently, this was made an edition-dependent error in [3]. Make missing fragment specifiers an unconditional error again. [1]: https://github.com/rust-lang/rust/pull/75516 [2]: https://github.com/rust-lang/rust/pull/80210 [3]: https://github.com/rust-lang/rust/pull/128006
2024-07-30 23:04:23 -04:00
macro_rules
!
m
{
(
$i
)
=
>
{
}
;
//~ ERROR missing fragment specifier
}
Add warning cycle.
2017-02-26 03:25:22 +00:00
fn
main
(
)
{
}
Reference in New Issue
Copy Permalink