blob: 9693d2fc6c059bad1219e6569aaf043007cbb42c [file] [log] [blame]
Manuel Klimek5eb60392015-06-26 02:15:04 +00001// RUN: not %clang_cc1 -fsyntax-only -std=c++11 -ferror-limit 1 %s 2>&1 | FileCheck %s
2unknown_type foo(unknown_type);
3// CHECK: fatal error: too many errors emitted, stopping now
4
5template <typename>
6class Bar {};
7
8extern template class Bar<int>;
9template class Bar<int>;