3 // RUN: split-file %s %t
5 // RUN: %clang_cc1 -x c++ -std=c++20 -fmodules -fmodule-name=foo %t/foo.map -emit-module -o %t/foo.pcm
6 // RUN: %clang_cc1 -x c++ -std=c++20 -fmodules -fmodules-cache-path=%t \
7 // RUN: -fmodule-file=%t/foo.pcm %t/use.cpp -verify -fsyntax-only
16 template<class T1
, int V
= 0>
20 class templ_params
{};
22 template<class T1
, template <typename
> typename T2
= templ_params
>
25 template<class T1
, class T2
= int>
30 template<class T1
, int V
= 1> // expected-error {{template parameter default argument is inconsistent with previous definition}}
31 class A
; // expected-note@foo.h:1 {{previous default template argument defined in module foo}}
34 class templ_params2
{};
36 template<class T1
, template <typename
> typename T2
= templ_params2
> // expected-error {{template parameter default argument is inconsistent with previous definition}}
37 class B
; // expected-note@foo.h:7 {{previous default template argument defined in module foo}}
39 template<class T1
, class T2
= double> // expected-error {{template parameter default argument is inconsistent with previous definition}}
40 class C
; // expected-note@foo.h:10 {{previous default template argument defined in module foo}}