summaryrefslogtreecommitdiff
path: root/tests/headers/auto.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/auto.hpp')
-rw-r--r--tests/headers/auto.hpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/headers/auto.hpp b/tests/headers/auto.hpp
deleted file mode 100644
index b5f6d5f3..00000000
--- a/tests/headers/auto.hpp
+++ /dev/null
@@ -1,19 +0,0 @@
-// bindgen-flags: -- -std=c++14
-// bindgen-unstable
-
-class Foo {
- static constexpr auto kFoo = 2 == 2;
-};
-
-template<typename T>
-class Bar {
- static const constexpr auto kBar = T(1);
-};
-
-template<typename T> auto Test1() {
- return T(1);
-}
-
-auto Test2() {
- return Test1<unsigned int>();
-}