comparison gcc/testsuite/g++.dg/other/offsetof5.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
7 { 7 {
8 char c; 8 char c;
9 int &i; 9 int &i;
10 }; 10 };
11 11
12 int j = offsetof (A, i); // { dg-error "offsetof" } 12 int j = offsetof (A, i); // { dg-message "offsetof" }
13 13
14 template <typename T> 14 template <typename T>
15 struct S 15 struct S
16 { 16 {
17 T h; 17 T h;
18 T &i; 18 T &i;
19 static const int j = offsetof (S, i); // { dg-error "offsetof" } 19 static const int j = offsetof (S, i); // { dg-message "offsetof" }
20 }; 20 };
21 21
22 int k = S<int>::j; // { dg-message "required from here" } 22 int k = S<int>::j; // { dg-message "required from here" }