aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/Wparentheses-4.C
blob: 2048ed7c7f14613129902f2f9fa1dea90dd37888 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Test that -Wparentheses does not give bogus warnings in the
// presence of templates for non-plain assignment.  Bug 17120.

// { dg-do compile }
// { dg-options "-Wparentheses" }

template<typename _Tp>
  inline _Tp
  cmath_power(_Tp __x, unsigned int __n)
  {
    while (__n >>= 1)
      ;
    return __x;
  }

int main()
{
  cmath_power(1.0, 3);
}