blob: a1ef0944dd1d2bd71cfb70de9a5d1ff38867859b [file] [log] [blame]
Richard Smith4b082422012-09-18 00:52:05 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
2
3struct S {
4 S(int, int) {}
5};
6
7void f(int, S const&, int) {}
8
9void test1()
10{
11 S X1{1, 1,};
12 S X2 = {1, 1,};
13
14 f(0, {1, 1}, 0);
15}