test: add demo file for auto-review

This commit is contained in:
2026-07-24 04:44:52 +00:00
parent 946baeba51
commit 4ddef8830e
+6
View File
@@ -0,0 +1,6 @@
def divide(a, b):
return a / b # no zero-division guard
def run_query(name):
# SQL injection: unsanitized string interpolation
return "SELECT * FROM users WHERE name = '" + name + "'"