new test.

From-SVN: r60609
This commit is contained in:
Gabriel Dos Reis 2002-12-29 21:13:10 +00:00
parent 695a8bcfbf
commit 17db6bcc29

View 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);
}