blob: b1f903def1325b819b1ed13c01e92d51c68bfd58 (
plain)
1
2
3
4
5
6
7
|
namespace {
template <typename T1, typename T2> struct Temp { int x; };
// This emits the 'Temp' template from this TU.
Temp<int, float> Template2;
} // namespace
int other() { return Template2.x; }
|