Skip to content
Snippets Groups Projects
Commit 5618d808 authored by Rafael Espindola's avatar Rafael Espindola
Browse files

Add tests for fixes I committed earlier to the C++ FE.

llvm-svn: 75924
parent 29332410
No related branches found
No related tags found
No related merge requests found
// RUN: %llvmgxx %s -S
#include <set>
class A {
public:
A();
private:
A(const A&);
};
void B()
{
std::set<void *, A> foo;
}
// RUN: %llvmgxx %s -S
namespace A {
typedef int B;
}
struct B {
};
using ::A::B;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment