Features: Add support for C++14 features.

Record the features implemented by GNU 4.9 and Clang 3.4.
This commit is contained in:
Stephen Kelly
2014-05-06 00:21:14 +02:00
parent 3ea9bde845
commit dd043c3f21
23 changed files with 294 additions and 9 deletions
@@ -0,0 +1,6 @@
int someFunc()
{
int a = 0;
return [b = static_cast<int&&>(a)]() { return b; }();
}