1 | // RUN: %clang_cc1 -fsyntax-only -std=c++17 -verify %s |
---|---|
2 | // expected-no-diagnostics |
3 | template <typename a, int* = nullptr> |
4 | struct e { |
5 | e(a) {} |
6 | }; |
7 | e c(0); |
8 |
1 | // RUN: %clang_cc1 -fsyntax-only -std=c++17 -verify %s |
---|---|
2 | // expected-no-diagnostics |
3 | template <typename a, int* = nullptr> |
4 | struct e { |
5 | e(a) {} |
6 | }; |
7 | e c(0); |
8 |