Add TODOs about false negatives
PiperOrigin-RevId: 541805378
diff --git a/nullability/test/templates.cc b/nullability/test/templates.cc
index 83839a7..7b093fb 100644
--- a/nullability/test/templates.cc
+++ b/nullability/test/templates.cc
@@ -1114,8 +1114,8 @@
**s.b; // [[unsafe]]
*s.f;
*s.g;
- *s.f();
- *s.g();
+ *s.f(); // TODO: fix false negative.
+ *s.g(); // TODO: fix false negative.
}
void targetNonnull(S<int* _Nonnull> s) {
@@ -1143,7 +1143,7 @@
***d.arg; // [[unsafe]]
*e.arg; // [[unsafe]]
- *e.arg();
+ *e.arg(); // TODO: fix false negative.
}
void targetNonnull(S<int* _Nonnull>(a), S<int* _Nonnull>(*(b)),