blob: 2678779d1dc8d7c0cbf58576b175238b552a6edd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* PR c++/57945 */
/* { dg-do compile } */
extern int j;
static int i __attribute__((weakref("j")));
/* { dg-error "PTX does not support weak declarations" "" { target nvptx-*-* } .-1 } */
int
foo (void)
{
return &i ? i : 0;
}
|