view gcc/testsuite/g++.old-deja/g++.benjamin/14139.C @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-do assemble  }
// 981203 bkoz
// g++/14309
// test for global functions, mf's, and templatized mf's.

static int fooe_1(void) { return 5; }
static int fooe_2(int x = fooe_1()) { return x; }

struct antigua {
  static int& foo_1();
  static int foo_2(int& x = antigua::foo_1());
  static int foo_3(int x = fooe_2());
};

template <typename T>
  struct jamacia {
    static int& foo_1();
    static int foo_2(int& x = antigua::foo_1());
    static int foo_3(int x = fooe_2());
  };

template class jamacia<int>;