summaryrefslogtreecommitdiffstats
path: root/Tests/Simple/simpleWe.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Simple/simpleWe.cpp')
-rw-r--r--Tests/Simple/simpleWe.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/Simple/simpleWe.cpp b/Tests/Simple/simpleWe.cpp
new file mode 100644
index 0000000..6bdd583
--- /dev/null
+++ b/Tests/Simple/simpleWe.cpp
@@ -0,0 +1,16 @@
+#include <stdio.h>
+
+class Foo
+{
+public:
+ Foo()
+ {
+ printf("This one has nonstandard extension\n");
+ }
+};
+
+int bar()
+{
+ Foo f;
+ return 0;
+}