// RUN: %clang_cc1 -fsyntax-only -verify -std=c++17 %s
;
// Don't crash.
A<int> // expected-note{{in instantiation of template class 'A<int>' requested here}}
;
// Don't crash.
B<int> // expected-note{{in instantiation of template class 'B<int>' requested here}}
;
;
// Don't crash.
C<int>
;
// Don't crash.
D<int, S> // expected-note{{in instantiation of template class 'D<int, S>' requested here}}