[Lldb-commits] [lldb] [lldb] Add `nullptr` literal to DIL (PR #208831)

via lldb-commits lldb-commits at lists.llvm.org
Tue Jul 14 10:48:41 PDT 2026


================
@@ -23,6 +23,14 @@ def test_literals(self):
         self.expect_var_path("true", value="true", type="bool")
         self.expect_var_path("false", value="false", type="bool")
 
+        # Check nullptr identifier
----------------
jimingham wrote:

This only tests that you get a C++ nullptr when you don't have a variable of the same name in scope.  You should also test that it doesn't shadow such a variable.

https://github.com/llvm/llvm-project/pull/208831


More information about the lldb-commits mailing list