summaryrefslogtreecommitdiff
path: root/Examples/test-suite/d/sneaky1_runme.1.d
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/d/sneaky1_runme.1.d')
-rw-r--r--Examples/test-suite/d/sneaky1_runme.1.d21
1 files changed, 0 insertions, 21 deletions
diff --git a/Examples/test-suite/d/sneaky1_runme.1.d b/Examples/test-suite/d/sneaky1_runme.1.d
deleted file mode 100644
index b293b4972..000000000
--- a/Examples/test-suite/d/sneaky1_runme.1.d
+++ /dev/null
@@ -1,21 +0,0 @@
-module sneaky1_runme;
-
-import sneaky1.sneaky1;
-
-void main() {
- if (add(30, 2) != 32) {
- throw new Exception("add test failed");
- }
-
- if (subtract(20, 2) != 18) {
- throw new Exception("subtract test failed");
- }
-
- if (mul(20, 2) != 40) {
- throw new Exception("mul test failed");
- }
-
- if (divide(20, 2) != 10) {
- throw new Exception("div test failed");
- }
-}