Commit 17db6bcc by Gabriel Dos Reis

new test.

From-SVN: r60609
parent 695a8bcf
// 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);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment