* g++.dg/cpp0x/lambda/lambda-this8.C: Don't use NULL.

From-SVN: r196080
This commit is contained in:
Jason Merrill 2013-02-15 11:16:58 -05:00
parent 110207ad17
commit 90680f3b80
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ struct test {
}
template<typename T>
void print() { if (this == NULL) __builtin_abort (); }
void print() { if (this == 0) __builtin_abort (); }
};
int main(void) {