comparison gcc/testsuite/g++.dg/ipa/pr85607.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 // { dg-do compile } 1 // { dg-do compile }
2 /* { dg-options "-O2" } */ 2 /* { dg-options "-O2" } */
3 3
4 class A; // { dg-message "forward declaration of 'class A'" } 4 class A; // { dg-message "7:forward declaration of 'class A'" }
5 5
6 A *a; // { dg-warning "'a' has incomplete type" } 6 A *a; // { dg-warning "4:'a' has incomplete type" }
7 7
8 int 8 int
9 main (int argc, char **argv) 9 main (int argc, char **argv)
10 { 10 {
11 delete a; // { dg-warning "delete" "warn" } 11 delete a; // { dg-warning "3:possible problem detected in invocation of .operator delete." "warn" }
12 // { dg-message "note" "note" { target *-*-* } .-1 } 12 // { dg-message "3:neither the destructor nor the class-specific" "note" { target *-*-* } .-1 }
13 return 0; 13 return 0;
14 } 14 }