This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
e30d27be00
rust
/
tests
/
ui
/
issues
/
issue-25394.rs
7 lines
86 B
Rust
Raw
Normal View
History
Unescape
Escape
Use check-pass in ui tests where appropriate
2019-11-03 18:00:00 -06:00
// check-pass
Add `#![allow(..)]` as necessary to get re-migrated run-pass tests compiling with clean stderr again. Most were added mechanically.
2018-09-25 16:51:35 -05:00
#![
allow(dead_code)
]
Make #[derive(Debug)] work with unsized fields Closes #25394
2015-05-17 16:03:37 -05:00
#[
derive(Debug)
]
struct
Row
<
T
>
(
[
T
]
)
;
fn
main
(
)
{
}
Reference in New Issue
Copy Permalink