You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
494 B
18 lines
494 B
void f1(int *ptr); // expected-warning{{pointer is missing a nullability type specifier}}
|
|
|
|
void f2(int * _Nonnull);
|
|
|
|
#include "nullability-consistency-2.h"
|
|
|
|
void f3(int *ptr) { // expected-warning{{pointer is missing a nullability type specifier}}
|
|
int *other = ptr; // shouldn't warn
|
|
}
|
|
|
|
class X {
|
|
void mf(int *ptr); // expected-warning{{pointer is missing a nullability type specifier}}
|
|
int X:: *memptr; // expected-warning{{member pointer is missing a nullability type specifier}}
|
|
};
|
|
|
|
|
|
|