repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
i386: Utilize VCOMSBF16 for BF16 Comparisons with AVX10.2
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
pr18016.C
blob
9cf1ea3b70ae233f5655ae4397c1177a6ade1b3f
1
/* { dg-do compile } */
2
/* { dg-options "-Wuninitialized -Winit-self" } */
3
4
class X {
5
int i;
6
X() : i(i) { } // { dg-warning "initialized with itself" }
7
X(int i) : i(i) { }
8
X(const X& x) : i(x.i) { }
9
};
10
11
// { dg-prune-output "In constructor" }