blob: 88f60d211eb3da4bd013ebc97d2adbf5202a2664 (
plain)
1
2
3
4
5
6
7
|
template<typename T>
class TemplateWithVar {
// We shouldn't generate bindings for this because there are potentially
// many instantiations of this variable, but we can't know which ones exist
// or don't.
static T var = 0;
};
|