summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/modernize-redundant-void-arg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/clang-tidy/test/modernize-redundant-void-arg.cpp')
-rw-r--r--tools/clang-tidy/test/modernize-redundant-void-arg.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/clang-tidy/test/modernize-redundant-void-arg.cpp b/tools/clang-tidy/test/modernize-redundant-void-arg.cpp
new file mode 100644
index 0000000000..078e0e13ca
--- /dev/null
+++ b/tools/clang-tidy/test/modernize-redundant-void-arg.cpp
@@ -0,0 +1,5 @@
+// modernize-redundant-void-arg
+
+int foo(void) {
+ return 0;
+}