]> git.lizzy.rs Git - rust.git/commitdiff
auto merge of #14509 : klutzy/rust/de-pub-use-glob, r=alexcrichton
authorbors <bors@rust-lang.org>
Mon, 2 Jun 2014 19:46:31 +0000 (12:46 -0700)
committerbors <bors@rust-lang.org>
Mon, 2 Jun 2014 19:46:31 +0000 (12:46 -0700)
This patchset removes `pub use` usage except for `test/`.
cc #11870

src/libsyntax/ext/deriving/encodable.rs
src/test/run-pass/issue-14021.rs [new file with mode: 0644]

index c8f5061c9897a6dd0d39ce065511bb0d234163c3..e189cc682f66e17f79c3b75382502e0db2667bdc 100644 (file)
@@ -176,6 +176,14 @@ fn encodable_substructure(cx: &mut ExtCtxt, trait_span: Span,
                 stmts.push(cx.stmt_expr(call));
             }
 
+            // unit structs have no fields and need to return Ok()
+            if stmts.is_empty() {
+                let ret_ok = cx.expr(trait_span,
+                                     ExprRet(Some(cx.expr_ok(trait_span,
+                                                             cx.expr_lit(trait_span, LitNil)))));
+                stmts.push(cx.stmt_expr(ret_ok));
+            }
+
             let blk = cx.lambda_stmts_1(trait_span, stmts, blkarg);
             cx.expr_method_call(trait_span,
                                 encoder,
diff --git a/src/test/run-pass/issue-14021.rs b/src/test/run-pass/issue-14021.rs
new file mode 100644 (file)
index 0000000..f25a1fc
--- /dev/null
@@ -0,0 +1,29 @@
+// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+
+extern crate serialize;
+
+use serialize::{Encodable, Decodable};
+use serialize::json;
+
+#[deriving(Encodable, Decodable, PartialEq, Show)]
+struct UnitLikeStruct;
+
+pub fn main() {
+    let obj = UnitLikeStruct;
+    let json_str: String = json::Encoder::str_encode(&obj);
+
+    let json_object = json::from_str(json_str.as_slice());
+    let mut decoder = json::Decoder::new(json_object.unwrap());
+    let mut decoded_obj: UnitLikeStruct = Decodable::decode(&mut decoder).unwrap();
+
+    assert_eq!(obj, decoded_obj);
+}