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

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();
}

OpenPOWER on IntegriCloud