Proposed resolution:
Add to the integral_constant struct definition in [meta.help]:
template <class T, T v> struct integral_constant { static constexpr T value = v; typedef T value_type; typedef integral_constant<T,v> type; constexpr operator value_type() { return value; } };