2013-09-28 12:56:31 -05:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
2014-05-22 18:57:53 -05:00
|
|
|
struct Wrapper(String);
|
2013-09-28 12:56:31 -05:00
|
|
|
|
|
|
|
impl Wrapper {
|
2014-05-22 18:57:53 -05:00
|
|
|
pub fn new(wrapped: String) -> Wrapper {
|
2013-09-28 12:56:31 -05:00
|
|
|
Wrapper(wrapped)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn say_hi(&self) {
|
2013-11-01 20:06:31 -05:00
|
|
|
let Wrapper(ref s) = *self;
|
|
|
|
println!("hello {}", *s);
|
2013-09-28 12:56:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Wrapper {
|
|
|
|
fn drop(&mut self) {}
|
|
|
|
}
|
|
|
|
|
2013-09-30 21:40:44 -05:00
|
|
|
pub fn main() {
|
2013-09-28 12:56:31 -05:00
|
|
|
{
|
|
|
|
// This runs without complaint.
|
2014-05-25 05:17:19 -05:00
|
|
|
let x = Wrapper::new("Bob".to_string());
|
2013-09-28 12:56:31 -05:00
|
|
|
x.say_hi();
|
|
|
|
}
|
|
|
|
{
|
|
|
|
// This fails to compile, circa 0.8-89-gc635fba.
|
|
|
|
// error: internal compiler error: drop_ty_immediate: non-box ty
|
2014-05-25 05:17:19 -05:00
|
|
|
Wrapper::new("Bob".to_string()).say_hi();
|
2013-09-28 12:56:31 -05:00
|
|
|
}
|
|
|
|
}
|