summaryrefslogtreecommitdiff
path: root/constexpr-test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'constexpr-test.cpp')
-rw-r--r--constexpr-test.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/constexpr-test.cpp b/constexpr-test.cpp
new file mode 100644
index 0000000..ba88142
--- /dev/null
+++ b/constexpr-test.cpp
@@ -0,0 +1,22 @@
+#include <iostream>
+#include "sales_item.hpp"
+
+/*
+ *
+ * A little test
+ *
+ *
+ */
+
+constexpr int get_number() {
+
+ return 999;
+}
+
+int main () {
+
+ constexpr int i = get_number();
+ std::cout << i << std::endl;
+
+ return 0;
+}