// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s // Core DR 532. namespace PR8130 { struct A { }; template struct B { template int &operator*(R&); }; template float &operator*(T&, R&); void test() { A a; B b; int &ir = b * a; } }