diff mbox series

c++: add original testcase [PR67898]

Message ID 20240130171422.3995225-1-ppalka@redhat.com
State New
Headers show
Series c++: add original testcase [PR67898] | expand

Commit Message

Patrick Palka Jan. 30, 2024, 5:14 p.m. UTC
Tested on x86_64-pc-linux-gnu, does this look OK for trunk?

-- >8 --

The original testcase from this PR (fixed by r14-8291) is rather
different from the others, so let's add it to the testsuite.

	PR c++/67898

gcc/testsuite/ChangeLog:

	* g++.dg/cpp0x/temp_default8.C: New test.
---
 gcc/testsuite/g++.dg/cpp0x/temp_default8.C | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 gcc/testsuite/g++.dg/cpp0x/temp_default8.C

Comments

Jason Merrill Jan. 30, 2024, 5:28 p.m. UTC | #1
On 1/30/24 12:14, Patrick Palka wrote:
> Tested on x86_64-pc-linux-gnu, does this look OK for trunk?

OK.

> -- >8 --
> 
> The original testcase from this PR (fixed by r14-8291) is rather
> different from the others, so let's add it to the testsuite.
> 
> 	PR c++/67898
> 
> gcc/testsuite/ChangeLog:
> 
> 	* g++.dg/cpp0x/temp_default8.C: New test.
> ---
>   gcc/testsuite/g++.dg/cpp0x/temp_default8.C | 14 ++++++++++++++
>   1 file changed, 14 insertions(+)
>   create mode 100644 gcc/testsuite/g++.dg/cpp0x/temp_default8.C
> 
> diff --git a/gcc/testsuite/g++.dg/cpp0x/temp_default8.C b/gcc/testsuite/g++.dg/cpp0x/temp_default8.C
> new file mode 100644
> index 00000000000..505c67d7c41
> --- /dev/null
> +++ b/gcc/testsuite/g++.dg/cpp0x/temp_default8.C
> @@ -0,0 +1,14 @@
> +// PR c++/67898
> +// { dg-do compile { target c++11 } }
> +
> +void f(int);
> +void f(float);
> +
> +template<class T, T F, T G, bool b = F == G> struct X { };
> +
> +template<class T>
> +void test() {
> +  X<void(T), f, f>();
> +}
> +
> +template void test<int>();
diff mbox series

Patch

diff --git a/gcc/testsuite/g++.dg/cpp0x/temp_default8.C b/gcc/testsuite/g++.dg/cpp0x/temp_default8.C
new file mode 100644
index 00000000000..505c67d7c41
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp0x/temp_default8.C
@@ -0,0 +1,14 @@ 
+// PR c++/67898
+// { dg-do compile { target c++11 } }
+
+void f(int);
+void f(float);
+
+template<class T, T F, T G, bool b = F == G> struct X { };
+
+template<class T>
+void test() {
+  X<void(T), f, f>();
+}
+
+template void test<int>();