diff --git a/m4/efl_stdcxx_11.m4 b/m4/efl_stdcxx_11.m4 index cdd3934c5d..f606bc0379 100644 --- a/m4/efl_stdcxx_11.m4 +++ b/m4/efl_stdcxx_11.m4 @@ -51,6 +51,9 @@ m4_define([_EFL_CXX_COMPILE_STDCXX_11_testbody], [ check_type c; check_type&& cr = static_cast(c); + struct A { A(int); }; + struct B : A { using A::A; }; // inheriting constructors + auto d = a; ])