Commit 7e5db637 by Martin Liska Committed by Martin Liska

Rename identifiers in a test-case.

2019-11-08  Martin Liska  <mliska@suse.cz>

	* g++.dg/pr92339.C: Rename identifiers to something
	more readable.

From-SVN: r277960
parent 74266b00
2019-11-08 Martin Liska <mliska@suse.cz>
* g++.dg/pr92339.C: Rename identifiers to something
more readable.
2019-11-08 Richard Sandiford <richard.sandiford@arm.com>
* gcc.target/aarch64/sve/acle/general/deref_2.c: New test.
......
/* PR c++/92339 */
/* { dg-options "-std=c++11" } */
class a {
template <typename b, b a::*> struct c { c(a *); };
class classA
{
template <typename typeB, typeB classA::*> struct typeC
{
typeC (classA *);
};
int m_fn1();
unsigned long d;
using e = c<unsigned long, &a::d>;
unsigned long fieldD;
using typeE = typeC<unsigned long, &classA::fieldD>;
};
int a::m_fn1() { e(this); return 0; }
int
classA::m_fn1 ()
{
typeE (this);
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment