This website requires JavaScript.
Explore
Help
Sign in
mathieu
/
granite-rust
Watch
1
Star
0
Fork
You've already forked granite-rust
0
Code
Issues
Pull requests
Projects
Releases
Packages
Wiki
Activity
0e9b465d72
granite-rust
/
src
/
test
/
run-pass
/
owned-implies-static.rs
8 lines
99 B
Rust
Raw
Normal View
History
Unescape
Escape
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
// pretty-expanded FIXME #23616
testsuite: Test for #4447 Closes #4447
2013-08-19 13:45:48 -07:00
fn
f
<
T
:
'static
>
(
_x
:
T
)
{
}
Fix run-pass tests to have 'pub fn main' This is required by the check-fast target because each test is slurped up into a submodule.
2013-09-25 00:43:37 -07:00
pub
fn
main
(
)
{
Switched to Box::new in many places. Many of the modifications putting in `Box::new` calls also include a pointer to Issue 22405, which tracks going back to `box <expr>` if possible in the future. (Still tried to use `Box<_>` where it sufficed; thus some tests still have `box_syntax` enabled, as they use a mix of `box` and `Box::new`.) Precursor for overloaded-`box` and placement-`in`; see Issue 22181.
2015-02-15 09:52:21 +01:00
f
(
Box
::
new
(
5
)
)
;
testsuite: Test for #4447 Closes #4447
2013-08-19 13:45:48 -07:00
}
Reference in a new issue
Copy permalink