Test for source location range of new expressions fixed in r167507.

Patch by Philip Craig.

llvm-svn: 167538
diff --git a/clang/unittests/AST/SourceLocationTest.cpp b/clang/unittests/AST/SourceLocationTest.cpp
index 73415b5..7d6e0c3 100644
--- a/clang/unittests/AST/SourceLocationTest.cpp
+++ b/clang/unittests/AST/SourceLocationTest.cpp
@@ -248,5 +248,11 @@
   EXPECT_TRUE(Verifier.match("void f(i) {}", varDecl(), Lang_C));
 }
 
+TEST(CXXNewExpr, ArrayRange) {
+  RangeVerifier<CXXNewExpr> Verifier;
+  Verifier.expectRange(1, 12, 1, 22);
+  EXPECT_TRUE(Verifier.match("void f() { new int[10]; }", newExpr()));
+}
+
 } // end namespace ast_matchers
 } // end namespace clang