diff --git a/examples/simple/notypes.lc b/examples/simple/notypes.lc
new file mode 100644
index 0000000000000000000000000000000000000000..378fae59018e99a067fda6f278c5c213680a557a
--- /dev/null
+++ b/examples/simple/notypes.lc
@@ -0,0 +1,22 @@
+sample int AnInt;
+
+sample struct {
+  int x;
+  string s;
+} IntString;
+
+sample struct {
+  double x;
+  double y;
+} TwoDoubles;
+
+sample struct {
+  int fixed[2];
+  int variable[2,_];
+} TwoArrays;
+
+sample struct {
+  int a[2];
+  int b[2,3];
+} TwoFixedArrays;
+