2012-12-10 19:32:48 -06:00
|
|
|
// 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.
|
|
|
|
|
2011-09-02 12:39:05 -05:00
|
|
|
// Tests that shapes respect linearize_ty_params().
|
|
|
|
|
2012-01-19 18:10:31 -06:00
|
|
|
enum option<T> {
|
2012-01-19 20:31:08 -06:00
|
|
|
none,
|
|
|
|
some(T),
|
2011-09-02 12:39:05 -05:00
|
|
|
}
|
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
type smallintmap<T> = @{mut v: ~[mut option<T>]};
|
2011-09-02 12:39:05 -05:00
|
|
|
|
2011-10-25 08:56:55 -05:00
|
|
|
fn mk<T>() -> smallintmap<T> {
|
2012-06-29 18:26:56 -05:00
|
|
|
let v: ~[mut option<T>] = ~[mut];
|
2012-09-19 00:45:24 -05:00
|
|
|
return @{mut v: move v};
|
2011-09-02 12:39:05 -05:00
|
|
|
}
|
|
|
|
|
2011-10-25 08:56:55 -05:00
|
|
|
fn f<T,U>() {
|
2011-09-02 12:39:05 -05:00
|
|
|
let sim = mk::<U>();
|
2011-12-22 19:53:53 -06:00
|
|
|
log(error, sim);
|
2011-09-02 12:39:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
f::<int,int>();
|
|
|
|
}
|
|
|
|
|