aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ipa/pr45565.C
blob: c04de12e2719647e423a43735c4e08205c453e83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// { dg-do compile }
// { dg-options "-O -fno-toplevel-reorder -fno-inline -fipa-cp -fipa-cp-clone -fkeep-inline-functions" }

template < typename Derived > struct AnyMatrixBase
{
};

struct Matrix Random ();

struct Matrix:AnyMatrixBase < Matrix >
{
  void bar ()
    {
      throw;
    }
  void foo (Matrix other)
    {
      bar ();
      Matrix (AnyMatrixBase < Matrix > (Random ()));
    }
  template
      < typename OtherDerived > Matrix (AnyMatrixBase < OtherDerived > other)
	{
	  foo (other);
	}
};

Matrix x (Random ());