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