mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
7 lines
143 B
C++
7 lines
143 B
C++
// RUN: clang-cc -fsyntax-only -verify %s
|
|
|
|
enum Enum { val = 1 };
|
|
template <Enum v> struct C {
|
|
typedef C<v> Self;
|
|
};
|
|
template struct C<val>;
|