diff options
Diffstat (limited to 'gcc/testsuite/g++.dg/template/sfinae27.C')
-rw-r--r-- | gcc/testsuite/g++.dg/template/sfinae27.C | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/template/sfinae27.C b/gcc/testsuite/g++.dg/template/sfinae27.C new file mode 100644 index 000000000..0ecd1700d --- /dev/null +++ b/gcc/testsuite/g++.dg/template/sfinae27.C @@ -0,0 +1,33 @@ +// Origin: PR c++/46162 + +struct small_type { char dummy; }; +struct large_type { char dummy[2]; }; + +template<class T> +struct has_foo_member_variable +{ + template<int T::*> struct tester; + template<class U> static small_type has_foo(tester<&U::foo> *); + template<class U> static large_type has_foo(...); + static const bool value = (sizeof(has_foo<T>(0)) == sizeof(small_type)); +}; + +struct A +{ + static int foo() + { + return 0; + } +}; + +struct B +{ + static int foo; +}; + +void +bar() +{ + bool b = has_foo_member_variable<A>::value; +} + |