1 template <typename T, typename U = int> 2 struct Foo { 3 T t; 4 U u; 5 }; 6 7 static Foo<bool> bar; 8