re PR c++/60245 (function with using defined parameter not accepted as constexpr parameter)
2014-11-18 Paolo Carlini <paolo.carlini@oracle.com> PR c++/60245 * g++.dg/cpp0x/constexpr-60245.C: New. From-SVN: r217709
This commit is contained in:
parent
6e9394078a
commit
a6965b6517
@ -1,3 +1,8 @@
|
|||||||
|
2014-11-18 Paolo Carlini <paolo.carlini@oracle.com>
|
||||||
|
|
||||||
|
PR c++/60245
|
||||||
|
* g++.dg/cpp0x/constexpr-60245.C: New.
|
||||||
|
|
||||||
2014-11-18 Paolo Carlini <paolo.carlini@oracle.com>
|
2014-11-18 Paolo Carlini <paolo.carlini@oracle.com>
|
||||||
|
|
||||||
PR c++/60771
|
PR c++/60771
|
||||||
|
8
gcc/testsuite/g++.dg/cpp0x/constexpr-60245.C
Normal file
8
gcc/testsuite/g++.dg/cpp0x/constexpr-60245.C
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
// PR c++/60245
|
||||||
|
// { dg-do compile { target c++11 } }
|
||||||
|
|
||||||
|
constexpr int Apply(const int in, int (*f)(const int&)) { return f(in); }
|
||||||
|
|
||||||
|
using Foo = int;
|
||||||
|
static constexpr int id(const Foo& i) { return i; }
|
||||||
|
static constexpr int results1 = Apply(0, &id);
|
Loading…
Reference in New Issue
Block a user