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