aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/pr35602.C
blob: 66a569b3d272c2addd22eb4c1f8827e5c9f4e07e (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
// PR 35602 Bogus warning with -Wsign-conversion
// { dg-do compile }
// { dg-options "-Wconversion -Wsign-conversion" }
struct c
{
  ~c();
  c();
};

int

main(const int,
     const char * const * const)
{
  c x[0UL][0UL] =  // { dg-bogus "warning: conversion to .long unsigned int. from .long int. may change the sign of the result" }
    {
    };
  
  c y[0UL] =
    {
    };
  
  int z[0ul][0UL] =
    {
    };
  
  return 0;
}