view gcc/testsuite/g++.dg/template/nontype11.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-do compile }
// Origin: <fsm at robots dot ox dot ac dot uk>
// PR c++/18354: Unary plus should not be wrapped in NON_LVALUE_EXPR

template <int N>
struct X { };

const int n = 1;

void f()
{
  X< 1> a;
  X<-1> b;
  X<+1> c;
}

void g()
{
  X< n> a;
  X<-n> b;
  X<+n> c;
}