We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09ae370 commit 61249daCopy full SHA for 61249da
src/test/run-fail/issue-2444.rs
@@ -3,7 +3,7 @@
3
use std;
4
import std::arc;
5
6
-enum e<T: const send> { e(arc::arc<T>) }
+enum e<T: const send> { e(arc::ARC<T>) }
7
8
fn foo() -> e<int> {fail;}
9
src/test/run-pass/bind-by-move.rs
@@ -1,7 +1,7 @@
1
// xfail-test
2
-fn dispose(+_x: arc::arc<bool>) unsafe { }
+fn dispose(+_x: arc::ARC<bool>) unsafe { }
fn main() {
let p = arc::arc(true);
0 commit comments