From 222e2a7620e6520ffaf4fc4e69d79c18da31542e Mon Sep 17 00:00:00 2001 From: "Zancanaro; Carlo" Date: Mon, 24 Sep 2012 09:58:17 +1000 Subject: Add the clang library to the repo (with some of my changes, too). --- .../temp.deduct/temp.deduct.call/p2.cpp | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/p2.cpp (limited to 'clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/p2.cpp') diff --git a/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/p2.cpp b/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/p2.cpp new file mode 100644 index 0000000..c165c45 --- /dev/null +++ b/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/p2.cpp @@ -0,0 +1,31 @@ +// RUN: %clang_cc1 -fsyntax-only -verify %s +template struct A { }; + +// bullet 1 +template A f0(T* ptr); + +void test_f0_bullet1() { + int arr0[6]; + A a0 = f0(arr0); + const int arr1[] = { 1, 2, 3, 4, 5 }; + A a1 = f0(arr1); +} + +// bullet 2 +int g0(int, int); +float g1(float); + +void test_f0_bullet2() { + A a0 = f0(g0); + A a1 = f0(g1); +} + +// bullet 3 +struct X { }; +const X get_X(); + +template A f1(T); + +void test_f1_bullet3() { + A a0 = f1(get_X()); +} -- cgit v1.2.3