Fix fallout of removing default bounds
This is all purely fallout of getting the previous commit to compile.
This commit is contained in:
parent
bdd24b2a56
commit
bb9172d7b5
61 changed files with 378 additions and 364 deletions
|
|
@ -11,5 +11,5 @@
|
|||
// error-pattern:failed at '~Any'
|
||||
|
||||
fn main() {
|
||||
fail!(~413 as ~::std::any::Any);
|
||||
fail!(~413 as ~::std::any::Any:Send);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ fn failfn() {
|
|||
|
||||
fn main() {
|
||||
let y = ~0;
|
||||
let x: @proc() = @(proc() {
|
||||
let x: @proc:Send() = @(proc() {
|
||||
println!("{:?}", y.clone());
|
||||
});
|
||||
failfn();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue