]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-9446.rs
auto merge of #9645 : dckc/rust/patch-2, r=catamorphism
[rust.git] / src / test / run-pass / issue-9446.rs
1 // Copyright 2013 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 struct Wrapper(~str);
12
13 impl Wrapper {
14     pub fn new(wrapped: ~str) -> Wrapper {
15         Wrapper(wrapped)
16     }
17
18     pub fn say_hi(&self) {
19         println!("hello {}", **self);
20     }
21 }
22
23 impl Drop for Wrapper {
24     fn drop(&mut self) {}
25 }
26
27 pub fn main() {
28     {
29         // This runs without complaint.
30         let x = Wrapper::new(~"Bob");
31         x.say_hi();
32     }
33     {
34         // This fails to compile, circa 0.8-89-gc635fba.
35         // error: internal compiler error: drop_ty_immediate: non-box ty
36         Wrapper::new(~"Bob").say_hi();
37     }
38 }