This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
cf2dff2b1e
rust
/
tests
/
run-make-fulldeps
/
many-crates-but-no-match
/
crateA3.rs
5 lines
79 B
Rust
Raw
Normal View
History
Unescape
Escape
Remove a large amount of deprecated functionality Spring cleaning is here! In the Fall! This commit removes quite a large amount of deprecated functionality from the standard libraries. I tried to ensure that only old deprecated functionality was removed. This is removing lots and lots of deprecated features, so this is a breaking change. Please consult the deprecation messages of the deleted code to see how to migrate code forward if it still needs migration. [breaking-change]
2014-10-15 01:05:01 -05:00
#![
crate_name=
"
crateA
"
]
Rough regression test for #13266. All it checks, unfortunately, is that you actually printed at least two lines for crateA paths and at least one line for crateB paths. But that's enough to capture the spirit of the bug, I think. I did not bother trying to verify that the paths themselves reflected where the crates end up.
2014-04-04 20:53:28 -05:00
// Base crate
pub
fn
foo
<
T
>
(
)
{
println!
(
"
world!
"
)
;
}
Reference in New Issue
Copy Permalink