You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
236 B

namespace N {
template <typename> struct A {
int n;
A() : n() {}
};
// Trigger instantiation of definition of A<int>.
struct C {
A<int> a;
};
}
// Merge in another declaration and update records.
#include "b1.h"