Revert r293455, which breaks v8 with a spurious error. Testcase added.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
Btw, ran into that with the even simpler test case
template<typename T> struct S {
    static typename T::t const n = 0;
};
struct U { using t = int; };
int main() { return S<U>::n; }