Mercurial > hg > CbC > CbC_llvm
view clang/test/Sema/crash-deduction-guide-access.cpp @ 222:81f6424ef0e3 llvm-original
LLVM original branch
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 18 Jul 2021 22:10:01 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: not %clang_cc1 -x c++ -std=c++17 -fsyntax-only %s template <typename U> class Imp { template <typename F> explicit Imp(F f); }; template <typename T> class Cls { explicit Imp() : f() {} };