2012-07-31 12:27:51 -05:00
|
|
|
trait hax { }
|
2012-08-07 20:10:06 -05:00
|
|
|
impl <A> A: hax { }
|
2012-07-10 22:53:49 -05:00
|
|
|
|
2012-07-18 13:01:54 -05:00
|
|
|
fn perform_hax<T: owned>(x: @T) -> hax {
|
2012-07-10 22:53:49 -05:00
|
|
|
x as hax
|
|
|
|
}
|
|
|
|
|
|
|
|
fn deadcode() {
|
2012-07-14 00:57:48 -05:00
|
|
|
perform_hax(@~"deadcode");
|
2012-07-10 22:53:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
perform_hax(@42);
|
|
|
|
}
|