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 c466242 commit 4747b74Copy full SHA for 4747b74
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: a4f8de382a042b664223389db8ffe2b5718b91e8
+refs/heads/master: 0abccc6370a6f943f9f41e6baec444dd3de2182a
trunk/src/test/run-pass/generic-alias-box.rs
@@ -0,0 +1,13 @@
+// xfail-boot
+// xfail-stage0
3
+
4
+fn id[T](&T t) -> T {
5
+ ret t;
6
+}
7
8
+fn main() {
9
+ auto expected = @100;
10
+ auto actual = id[@int](expected);
11
+ log *actual;
12
+ check (*expected == *actual);
13
0 commit comments