This website requires JavaScript.
Explore
Help
Sign in
bjoernager
/
rust
Watch
1
Fork
You've already forked rust
0
Code
Activity
a439eb259d
rust
/
tests
/
ui
/
error-codes
/
E0061.rs
12 lines
121 B
Rust
Raw
Normal View
History
Unescape
Escape
Add new error code tests
2016-05-19 14:00:43 +02:00
fn
f
(
a
:
u16
,
b
:
&
str
)
{
}
E0060 and E0061 improvement
2016-08-25 13:06:38 +02:00
fn
f2
(
a
:
u16
)
{
}
Add new error code tests
2016-05-19 14:00:43 +02:00
fn
main
(
)
{
Tidying up some of the line spacing / code formatting for NOTE/ERROR annotation to match other files.
2016-08-04 08:07:14 -04:00
f
(
0
)
;
Removing trailing whitespace leftover from last re-formatting commit
2016-08-04 08:28:48 -04:00
//~^ ERROR E0061
E0060 and E0061 improvement
2016-08-25 13:06:38 +02:00
f2
(
)
;
//~^ ERROR E0061
Add new error code tests
2016-05-19 14:00:43 +02:00
}
Copy permalink