Richard Smith | 87bb569 | 2015-06-09 00:35:49 +0000 | [diff] [blame] | 1 | // RUN: rm -rf %t |
Richard Smith | 4440d6e | 2015-07-19 23:44:27 +0000 | [diff] [blame^] | 2 | // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -verify -fmodules-cache-path=%t -fno-modules-error-recovery -I %S/Inputs/template-default-args -std=c++11 %s -DBEGIN= -DEND= |
| 3 | // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -verify -fmodules-cache-path=%t -fno-modules-error-recovery -I %S/Inputs/template-default-args -std=c++11 %s -DBEGIN="namespace N {" -DEND="}" |
Richard Smith | 87bb569 | 2015-06-09 00:35:49 +0000 | [diff] [blame] | 4 | |
Richard Smith | 4440d6e | 2015-07-19 23:44:27 +0000 | [diff] [blame^] | 5 | BEGIN |
Richard Smith | 87bb569 | 2015-06-09 00:35:49 +0000 | [diff] [blame] | 6 | template<typename T> struct A; |
| 7 | template<typename T> struct B; |
| 8 | template<typename T> struct C; |
| 9 | template<typename T = int> struct D; |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 10 | template<typename T = int> struct E {}; |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 11 | template<typename T> struct H {}; |
Richard Smith | afe800c | 2015-06-17 22:13:23 +0000 | [diff] [blame] | 12 | template<typename T = int, typename U = int> struct I {}; |
Richard Smith | 4440d6e | 2015-07-19 23:44:27 +0000 | [diff] [blame^] | 13 | END |
Richard Smith | 87bb569 | 2015-06-09 00:35:49 +0000 | [diff] [blame] | 14 | |
| 15 | #include "b.h" |
| 16 | |
Richard Smith | 4440d6e | 2015-07-19 23:44:27 +0000 | [diff] [blame^] | 17 | BEGIN |
Richard Smith | 87bb569 | 2015-06-09 00:35:49 +0000 | [diff] [blame] | 18 | template<typename T = int> struct A {}; |
| 19 | template<typename T> struct B {}; |
| 20 | template<typename T = int> struct B; |
| 21 | template<typename T = int> struct C; |
| 22 | template<typename T> struct D {}; |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 23 | template<typename T> struct F {}; |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 24 | template<typename T> struct G {}; |
Richard Smith | 4440d6e | 2015-07-19 23:44:27 +0000 | [diff] [blame^] | 25 | END |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 26 | |
| 27 | #include "c.h" |
Richard Smith | 87bb569 | 2015-06-09 00:35:49 +0000 | [diff] [blame] | 28 | |
Richard Smith | 4440d6e | 2015-07-19 23:44:27 +0000 | [diff] [blame^] | 29 | BEGIN |
Richard Smith | 87bb569 | 2015-06-09 00:35:49 +0000 | [diff] [blame] | 30 | A<> a; |
| 31 | B<> b; |
| 32 | extern C<> c; |
| 33 | D<> d; |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 34 | E<> e; |
| 35 | F<> f; |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 36 | G<> g; // expected-error {{default argument of 'G' must be imported from module 'X.A' before it is required}} |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 37 | // expected-note@a.h:7 {{default argument declared here}} |
Richard Smith | 4440d6e | 2015-07-19 23:44:27 +0000 | [diff] [blame^] | 38 | H<> h; // expected-error {{default argument of 'H' must be imported from module 'X.A' before it is required}} |
| 39 | // expected-note@a.h:8 {{default argument declared here}} |
Richard Smith | afe800c | 2015-06-17 22:13:23 +0000 | [diff] [blame] | 40 | I<> i; |
Richard Smith | 4440d6e | 2015-07-19 23:44:27 +0000 | [diff] [blame^] | 41 | END |