diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-06-13 02:46:14 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-06-13 02:46:14 +0000 |
commit | 4055de40abf5536e4b88b399ca89274a1eec8869 (patch) | |
tree | 3c22a978f9867927782f556176010f135ae9a197 /clang/test/SemaCXX/lambda-expressions.cpp | |
parent | f026b600992d18aa31d307ddb039605426fe20e8 (diff) | |
download | bcm5719-llvm-4055de40abf5536e4b88b399ca89274a1eec8869.tar.gz bcm5719-llvm-4055de40abf5536e4b88b399ca89274a1eec8869.zip |
Implement core issue 903: only integer literals with value 0 and prvalues of
type std::nullptr_t are null pointer constants from C++11 onwards.
llvm-svn: 183883
Diffstat (limited to 'clang/test/SemaCXX/lambda-expressions.cpp')
-rw-r--r-- | clang/test/SemaCXX/lambda-expressions.cpp | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/clang/test/SemaCXX/lambda-expressions.cpp b/clang/test/SemaCXX/lambda-expressions.cpp index a333f38530b..83c5215d745 100644 --- a/clang/test/SemaCXX/lambda-expressions.cpp +++ b/clang/test/SemaCXX/lambda-expressions.cpp @@ -109,27 +109,30 @@ namespace PR12031 { } } -namespace NullPtr { +namespace Array { int &f(int *p); char &f(...); void g() { - int n = 0; + int n = -1; [=] { - char &k = f(n); // not a null pointer constant + int arr[n]; // VLA } (); - const int m = 0; - [=] { - int &k = f(m); // expected-warning{{expression which evaluates to zero treated as a null pointer constant of type 'int *'}} + const int m = -1; + [] { + int arr[m]; // expected-error{{negative size}} } (); - [=] () -> bool { - int &k = f(m); // expected-warning{{expression which evaluates to zero treated as a null pointer constant of type 'int *'}} - return &m == 0; + [&] { + int arr[m]; // expected-error{{negative size}} + } (); + + [=] { + int arr[m]; // expected-error{{negative size}} } (); [m] { - int &k = f(m); // expected-warning{{expression which evaluates to zero treated as a null pointer constant of type 'int *'}} + int arr[m]; // expected-error{{negative size}} } (); } } |