Welcome to mirror list, hosted at ThFree Co, Russian Federation.

default-argument-temporaries.cpp « SemaCXX « test « clang - github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3ab7bf4eb13d6c6d0bcc9801002e80d0b078311e (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -fsyntax-only -verify %s
struct B { B(void* = 0); };

struct A {
  A(B b = B()) { }
};

void f() {
  (void)B();
  (void)A();
}