blob: 1b21e4cd191ad3083e41cef2497bc375ac85c551 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//@ run-pass
//@ aux-build:default_type_params_xc.rs
extern crate default_type_params_xc;
struct Vec<T, A = default_type_params_xc::Heap>(#[allow(dead_code)] Option<(T,A)>);
struct Foo;
fn main() {
let _a = Vec::<isize>(None);
let _b = Vec::<isize, default_type_params_xc::FakeHeap>(None);
let _c = default_type_params_xc::FakeVec::<isize> { f: None };
let _d = default_type_params_xc::FakeVec::<isize, Foo> { f: None };
}
|