summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/bugprone-incorrect-roundings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/clang-tidy/test/bugprone-incorrect-roundings.cpp')
-rw-r--r--tools/clang-tidy/test/bugprone-incorrect-roundings.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/clang-tidy/test/bugprone-incorrect-roundings.cpp b/tools/clang-tidy/test/bugprone-incorrect-roundings.cpp
new file mode 100644
index 0000000000..ee37b56ae0
--- /dev/null
+++ b/tools/clang-tidy/test/bugprone-incorrect-roundings.cpp
@@ -0,0 +1,7 @@
+void f1()
+{
+ double d;
+ int x;
+
+ x = (d + 0.5);
+}