Mercurial > hg > CbC > CbC_llvm
view clang/test/SemaCXX/cxx11-unused.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: %clang_cc1 -std=c++11 -verify %s -Wunused-parameter // PR19303 : Make sure we don't get a unused expression warning for deleted and // defaulted functions // expected-no-diagnostics class A { public: int x; A() = default; ~A() = default; A(const A &other) = delete; template <typename T> void SetX(T x) { this->x = x; }; void SetX1(int x); }; template <> void A::SetX(A x) = delete; class B { public: B() = default; ~B() = default; B(const B &other); }; B::B(const B &other) = default;