blob: ea30a7a0cd749881208b3c544a985766bac84fea [file] [log] [blame]
Richard Smith6e671422018-12-04 22:26:32 +00001// RUN: %clang_cc1 -std=c++17 -verify %s
2// expected-no-diagnostics
3
4template<typename T, typename U> struct X {
5 template<typename V> const V &as() { return V::error; }
6 template<> const U &as<U>() { return u; }
7 U u;
8};
9int f(X<int, int> x) {
10 return x.as<int>();
11}