File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
9
- refs/heads/incoming: e0d5d034513f21859b587a0a0b043967cda62f97
9
+ refs/heads/incoming: d38b97a170eaea47933c30937cee5f525573116d
10
10
refs/heads/dist-snap: 2f32a1581f522e524009138b33b1c7049ced668d
11
11
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
12
12
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -399,7 +399,7 @@ fn operator_prec(op: ast::binop) -> uint {
399
399
fn dtor_dec ( ) -> fn_decl {
400
400
let nil_t = @{ id: 0 , node: ty_nil, span: dummy_sp ( ) } ;
401
401
// dtor has one argument, of type ()
402
- { inputs: ~[ { mode: ast:: expl ( ast :: by_ref ) ,
402
+ { inputs: ~[ { mode: ast:: infer ( 0 ) , // tjc: node id???
403
403
ty: nil_t, ident: parse:: token:: special_idents:: underscore,
404
404
id: 0 } ] ,
405
405
output: nil_t, cf: return_val}
Original file line number Diff line number Diff line change
1
+ struct Foo {
2
+ x : int ,
3
+ drop { }
4
+ }
5
+
6
+ fn main ( ) { }
You can’t perform that action at this time.
0 commit comments