This website requires JavaScript.
Explore
Help
Sign in
bjoernager
/
rust
Watch
1
Fork
You've already forked rust
0
Code
Activity
6c3243f008
rust
/
tests
/
ui
/
deref.rs
7 lines
94 B
Rust
Raw
Normal View
History
Unescape
Escape
[AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives
2024-02-16 20:02:50 +00:00
//@ run-pass
rustdoc: Replace no-pretty-expanded with pretty-expanded Now that features must be declared expanded source often does not compile. This adds 'pretty-expanded' to a bunch of test cases that still work.
2015-03-22 13:13:15 -07:00
Fix warnings it tests
2013-08-17 08:37:42 -07:00
pub
fn
main
(
)
{
Remove box syntax from most places in src/test outside of the issues dir
2021-08-25 02:39:40 +02:00
let
x
:
Box
<
isize
>
=
Box
::
new
(
10
)
;
Mass rename uint/int to usize/isize Now that support has been removed, all lingering use cases are renamed.
2015-03-25 17:06:52 -07:00
let
_y
:
isize
=
*
x
;
Fix warnings it tests
2013-08-17 08:37:42 -07:00
}
Copy permalink