summaryrefslogtreecommitdiff
path: root/tests/chainup/base-private.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/chainup/base-private.test')
-rw-r--r--tests/chainup/base-private.test14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/chainup/base-private.test b/tests/chainup/base-private.test
new file mode 100644
index 000000000..9d4776146
--- /dev/null
+++ b/tests/chainup/base-private.test
@@ -0,0 +1,14 @@
+Invalid Code
+
+class Foo {
+ private Foo () {
+ }
+}
+
+class Bar : Foo {
+ public Bar () {
+ }
+}
+
+void main () {
+}