This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-01-10 23:06:23 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
dab715641e
rust
/
tests
/
ui
/
structs-enums
/
issue-3008-2.rs
7 lines
77 B
Rust
Raw
Normal View
History
Unescape
Escape
make non_camel_case_types an early lint
2018-12-17 03:21:47 +00:00
enum
Foo
{
Foo_
(
Bar
)
}
struct
Bar
{
x
:
Bar
}
Detect cycles and specialize error reporting for Sized. It is important to get the `Sized` error usable, since that hits new users frequently. Further work is needed for the error reporting for non-Sized cycle cases; those currently just fallback to the old path. Also adjust tests.
2016-01-09 02:41:37 +00:00
//~^ ERROR E0072
Add compile-fail tests for non-representable structs and enums
2014-01-28 06:29:22 +00:00
fn
main
(
)
{
}
Reference in New Issue
Copy Permalink