diff options
Diffstat (limited to 'tests/headers/issue-2239-template-dependent-bit-width.hpp')
-rw-r--r-- | tests/headers/issue-2239-template-dependent-bit-width.hpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/headers/issue-2239-template-dependent-bit-width.hpp b/tests/headers/issue-2239-template-dependent-bit-width.hpp deleted file mode 100644 index 4e6feb3f..00000000 --- a/tests/headers/issue-2239-template-dependent-bit-width.hpp +++ /dev/null @@ -1,10 +0,0 @@ -template <class a> class b { - typedef a td; - using ta = a; - struct foo { - a foo : sizeof(a); - a : sizeof(a); - td : sizeof(td); - ta : sizeof(ta); - }; -}; |