brintos

brintos / llvm-project-archived public Read only

0
0
Text · 156 B · 6b414b3 Raw
9 lines · c
1#ifndef A_H2#define A_H3template<typename T, T v>4struct S { static constexpr T value = v; };5template<typename T, T v>6constexpr T S<T, v>::value;7 8#endif9