Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / parse / direct-initialization-2.C
blobf362c74a7c39ce1ae88ef9039e909cec459e1db3
1 // Copyright (C) 2002 Free Software Foundation
2 // Origin: C++/729
3 // Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
4 // { dg-do compile }
6 struct A {
7    A(int) { }
8 };
10 struct B {
11    typedef B T;
12    B(A, char**) {}
15 int main(int argc, char** argv)
17    B::T t(A(argc), argv);