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
/
error-codes
/
E0390.rs
11 lines
108 B
Rust
Raw
Normal View
History
Unescape
Escape
Add new error code tests
2016-08-06 21:44:49 +02:00
struct
Foo
{
x
:
i32
}
impl
*
mut
Foo
{
}
//~ ERROR E0390
Improve the function pointer docs * Reduce duplicate impls; show only the `fn (T)` and include a sentence saying that there exists up to twelve of them. * Show `Copy` and `Clone`. * Show auto traits like `Send` and `Sync`, and blanket impls like `Any`.
2022-06-16 14:14:38 -07:00
impl
fn
(
Foo
)
{
}
//~ ERROR E0390
Add new error code tests
2016-08-06 21:44:49 +02:00
fn
main
(
)
{
}
Reference in New Issue
Copy Permalink