blob: b4407d33a715f42d95ab739a56e7a07fc263e0f1 [file] [log] [blame]
/* Invalid initializations. */
/* { dg-require-effective-target tls_native } */
extern __thread int i;
__thread int *p = &i; /* { dg-error "dynamically initialized" } */
extern int f();
__thread int j = f(); /* { dg-error "dynamically initialized" } */
struct S
{
S();
};
__thread S s; /* { dg-error "" } two errors here */