brintos

brintos / llvm-project-archived public Read only

0
0
Text · 155 B · b621a3a Raw
8 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -std=c++17  -verify %s2// expected-no-diagnostics3template <typename a, int* = nullptr>4struct e {5    e(a) {}6};7e c(0);8