what's going on with variable templates? icc 2016 says they're supported (https://software.intel.com/en-us/articles/intel-c-compiler-160-for-linux...), but when I try to compile the following code it fails with "-std=c++14". The code works with clang 3.7.
template<class T> constexpr int value_of = T::value; int main() { return 0; }