aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/special/class.conv/class.conv.ctor/p1.cpp
blob: d2add82f420f479d81a7b4055adce23e3da1e81d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: %clang_cc1 -std=c++11 %s -verify 

namespace PR13003 {
  struct void_type
  {
    template <typename Arg0, typename... Args>
    void_type(Arg0&&, Args&&...) { }
  };

  struct void_type2
  {
    template <typename... Args>
    void_type2(Args&&...) { }
  };
  
  struct atom { };
  
  void_type v1 = atom();
  void_type2 v2 = atom();
}