summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/default1.cpp
blob: be264ad62b130790fa25912c0a6583a4443fbc37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// RUN: clang-cc -fsyntax-only -verify %s
void f(int i);
void f(int i = 0); // expected-note {{previous definition is here}}
void f(int i = 17); // expected-error {{redefinition of default argument}}


void g(int i, int j, int k = 3);
void g(int i, int j = 2, int k);
void g(int i = 1, int j, int k);

void h(int i, int j = 2, int k = 3, 
       int l, // expected-error {{missing default argument on parameter 'l'}}
       int,   // expected-error {{missing default argument on parameter}}
       int n);// expected-error {{missing default argument on parameter 'n'}}

struct S { } s;
void i(int = s) { } // expected-error {{incompatible type}}

struct X { 
  X(int);
};

void j(X x = 17);

struct Y {
  explicit Y(int);
};

void k(Y y = 17); // expected-error{{cannot initialize 'y' with an rvalue of type 'int'}}

void kk(Y = 17); // expected-error{{cannot initialize a value of type 'struct Y' with an rvalue of type 'int'}}
OpenPOWER on IntegriCloud