new test.
From-SVN: r60609
This commit is contained in:
parent
695a8bcfbf
commit
17db6bcc29
1 changed files with 18 additions and 0 deletions
18
gcc/testsuite/g++.dg/parse/direct-initialization-2.C
Normal file
18
gcc/testsuite/g++.dg/parse/direct-initialization-2.C
Normal file
|
@ -0,0 +1,18 @@
|
|||
// Copyright (C) 2002 Free Software Foundation
|
||||
// Origin: C++/729
|
||||
// Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>
|
||||
// { dg-do compile }
|
||||
|
||||
struct A {
|
||||
A(int) { }
|
||||
};
|
||||
|
||||
struct B {
|
||||
typedef B T;
|
||||
B(A, char**) {}
|
||||
};
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
B::T t(A(argc), argv);
|
||||
}
|
Loading…
Add table
Reference in a new issue