// -*- rust -*-
// Issue #50.
fn main() {
auto x = rec(foo = "hello", bar = "world");
log x.foo;
log x.bar;
}
// -*- rust -*-
// Issue #50.
fn main() { auto x = rec(foo="hello", bar="world"); log x.foo; log x.bar; }
// -*- rust -*-
// Issue #50.
fn main() { let x = {foo: "hello", bar: "world"}; log x.foo; log x.bar; }
// -*- rust -*-
// Issue #50.
fn main() { let x = {foo: "hello", bar: "world"}; log x.foo; log x.bar; }
// -*- rust -*-
// Issue #50.
fn main() {
let x = {foo: "hello", bar: "world"};
log_full(core::debug, x.foo);
log_full(core::debug, x.bar);
}
// -*- rust -*-
// Issue #50.
fn main() {
let x = {foo: "hello", bar: "world"};
log(debug, x.foo);
log(debug, x.bar);
}
// -*- rust -*-
// Issue #50.
fn main() {
let x = {foo: ~"hello", bar: ~"world"};
log(debug, x.foo);
log(debug, x.bar);
}
// -*- rust -*-
// Issue #50.
fn main() {
let x = {foo: ~"hello", bar: ~"world"};
log(debug, copy x.foo);
log(debug, copy x.bar);
}
// Copyright 2012 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.
// -*- rust -*-
// Issue #50.
fn main() {
let x = {foo: ~"hello", bar: ~"world"};
log(debug, copy x.foo);
log(debug, copy x.bar);
}
// Copyright 2012 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.
// -*- rust -*-
// Issue #50.
struct X { foo: ~str, bar: ~str }
fn main() {
let x = X {foo: ~"hello", bar: ~"world"};
log(debug, copy x.foo);
log(debug, copy x.bar);
}
// Copyright 2012 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.
// -*- rust -*-
// Issue #50.
struct X { foo: ~str, bar: ~str }
pub fn main() {
let x = X {foo: ~"hello", bar: ~"world"};
log(debug, copy x.foo);
log(debug, copy x.bar);
}
// Copyright 2012 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.
// -*- rust -*-
// Issue #50.
struct X { foo: ~str, bar: ~str }
pub fn main() {
let x = X {foo: ~"hello", bar: ~"world"};
debug!(copy x.foo);
debug!(copy x.bar);
}
// Copyright 2012 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.
// -*- rust -*-
// Issue #50.
struct X { foo: ~str, bar: ~str }
pub fn main() {
let x = X {foo: ~"hello", bar: ~"world"};
debug!(x.foo.clone());
debug!(x.bar.clone());
}
// Copyright 2012 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.
// -*- rust -*-
// Issue #50.
struct X { foo: ~str, bar: ~str }
pub fn main() {
let x = X {foo: ~"hello", bar: ~"world"};
info!(x.foo.clone());
info!(x.bar.clone());
}
// Copyright 2012 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.
// -*- rust -*-
// Issue #50.
struct X { foo: ~str, bar: ~str }
pub fn main() {
let x = X {foo: ~"hello", bar: ~"world"};
info2!("{}", x.foo.clone());
info2!("{}", x.bar.clone());
}
// Copyright 2012 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.
// -*- rust -*-
// Issue #50.
struct X { foo: ~str, bar: ~str }
pub fn main() {
let x = X {foo: ~"hello", bar: ~"world"};
info!("{}", x.foo.clone());
info!("{}", x.bar.clone());
}
// Copyright 2012 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.
// Issue #50.
struct X { foo: ~str, bar: ~str }
pub fn main() {
let x = X {foo: ~"hello", bar: ~"world"};
info!("{}", x.foo.clone());
info!("{}", x.bar.clone());
}
// Copyright 2012 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.
// Issue #50.
struct X { foo: ~str, bar: ~str }
pub fn main() {
let x = X {foo: ~"hello", bar: ~"world"};
println!("{}", x.foo.clone());
println!("{}", x.bar.clone());
}
// Copyright 2012 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.
// Issue #50.
struct X { foo: ~str, bar: ~str }
pub fn main() {
let x = X {foo: "hello".to_owned(), bar: "world".to_owned()};
println!("{}", x.foo.clone());
println!("{}", x.bar.clone());
}
// Copyright 2012 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.
// Issue #50.
struct X { foo: StrBuf, bar: StrBuf }
pub fn main() {
let x = X {foo: "hello".to_strbuf(), bar: "world".to_strbuf()};
println!("{}", x.foo.clone());
println!("{}", x.bar.clone());
}
// Copyright 2012 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.
// Issue #50.
struct X { foo: String, bar: String }
pub fn main() {
let x = X {foo: "hello".to_strbuf(), bar: "world".to_strbuf()};
println!("{}", x.foo.clone());
println!("{}", x.bar.clone());
}
// Copyright 2012 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.
// Issue #50.
struct X { foo: String, bar: String }
pub fn main() {
let x = X {foo: "hello".to_string(), bar: "world".to_string()};
println!("{}", x.foo.clone());
println!("{}", x.bar.clone());
}