[nullability] Add the shell of a `nullability_test` for smart pointers.
At the moment, the only this checks is that we can include <memory>.
PiperOrigin-RevId: 587705194
Change-Id: I9ae4e23b2d96cca1c9011fad67180c50167488b1
diff --git a/nullability/test/BUILD b/nullability/test/BUILD
index fcb6841..88085ed 100644
--- a/nullability/test/BUILD
+++ b/nullability/test/BUILD
@@ -238,6 +238,11 @@
],
)
+nullability_test(
+ name = "smart_pointers",
+ srcs = ["smart_pointers.cc"],
+)
+
cc_test(
name = "smart_pointers_diagnostics",
srcs = ["smart_pointers_diagnostics.cc"],
diff --git a/nullability/test/smart_pointers.cc b/nullability/test/smart_pointers.cc
new file mode 100644
index 0000000..b6b4d71
--- /dev/null
+++ b/nullability/test/smart_pointers.cc
@@ -0,0 +1,9 @@
+// Part of the Crubit project, under the Apache License v2.0 with LLVM
+// Exceptions. See /LICENSE for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+
+// Tests for smart pointers.
+
+#include <memory>
+
+#include "nullability_test.h"