comparison gcc/testsuite/g++.dg/ext/is_base_of_incomplete-2.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 struct T;
2
3 int check1[__is_base_of(T, T) ? 1 : -1];
4 int check2[__is_base_of(T, const T) ? 1 : -1];
5 int check3[__is_base_of(volatile T, T) ? 1 : -1];