]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/logging-only-prints-once.rs
Imported Upstream version 1.2.0+dfsg1
[rustc.git] / src / test / run-pass / logging-only-prints-once.rs
CommitLineData
1a4d82fc
JJ
1// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11// ignore-windows
12// exec-env:RUST_LOG=debug
13
14use std::cell::Cell;
15use std::fmt;
85aaf69f 16use std::thread;
1a4d82fc 17
c34b1796 18struct Foo(Cell<isize>);
1a4d82fc 19
85aaf69f 20impl fmt::Debug for Foo {
1a4d82fc
JJ
21 fn fmt(&self, _fmt: &mut fmt::Formatter) -> fmt::Result {
22 let Foo(ref f) = *self;
62682a34 23 assert_eq!(f.get(), 0);
1a4d82fc
JJ
24 f.set(1);
25 Ok(())
26 }
27}
28
29pub fn main() {
85aaf69f 30 thread::spawn(move|| {
1a4d82fc
JJ
31 let mut f = Foo(Cell::new(0));
32 println!("{:?}", f);
33 let Foo(ref mut f) = f;
62682a34 34 assert_eq!(f.get(), 1);
1a4d82fc
JJ
35 }).join().ok().unwrap();
36}