summaryrefslogtreecommitdiff
path: root/ccc/precedence.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ccc/precedence.cc')
-rw-r--r--ccc/precedence.cc16
1 files changed, 0 insertions, 16 deletions
diff --git a/ccc/precedence.cc b/ccc/precedence.cc
deleted file mode 100644
index 08e29b6..0000000
--- a/ccc/precedence.cc
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <iostream>
-
-using namespace std;
-
-
-int main(void)
-{
- bool a = false;
- bool b = true;
-
- cout << (!a && b) << endl;
-
- double c = 0;
- if (c) cout << "xx" << endl;
-}
-