2013-03-01 20:42:02 -06:00
|
|
|
// pp-exact
|
|
|
|
struct Foo;
|
2015-03-25 19:06:52 -05:00
|
|
|
struct Bar(isize, isize);
|
2013-03-01 20:42:02 -06:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
struct Foo2;
|
2015-03-25 19:06:52 -05:00
|
|
|
struct Bar2(isize, isize, isize);
|
2013-08-17 10:37:42 -05:00
|
|
|
let _a = Bar(5, 5);
|
|
|
|
let _b = Foo;
|
2013-03-01 20:42:02 -06:00
|
|
|
}
|