1 /* { dg-options "-fdiagnostics-show-caret -std=c++98" } */
2 template <typename T>
3 struct foo {};
4 
5 foo<foo<int>> i; // { dg-error "12: .>>. should be .> >. within a nested template argument list" }
6 /* { dg-begin-multiline-output "" }
7  foo<foo<int>> i;
8             ^~
9             > >
10    { dg-end-multiline-output "" } */
11