comparison clang/test/SemaTemplate/member-specialization.cpp @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children
comparison
equal deleted inserted replaced
147:c2174574ed3a 150:1d019706d866
1 // RUN: %clang_cc1 -std=c++17 -verify %s
2 // expected-no-diagnostics
3
4 template<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 };
9 int f(X<int, int> x) {
10 return x.as<int>();
11 }