aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/v/checker/tests/unimplemented_interface_h.vv
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/old/vlib/v/checker/tests/unimplemented_interface_h.vv')
-rw-r--r--v_windows/v/old/vlib/v/checker/tests/unimplemented_interface_h.vv10
1 files changed, 10 insertions, 0 deletions
diff --git a/v_windows/v/old/vlib/v/checker/tests/unimplemented_interface_h.vv b/v_windows/v/old/vlib/v/checker/tests/unimplemented_interface_h.vv
new file mode 100644
index 0000000..cd00881
--- /dev/null
+++ b/v_windows/v/old/vlib/v/checker/tests/unimplemented_interface_h.vv
@@ -0,0 +1,10 @@
+interface Animal {
+ name string
+}
+
+struct Cat {}
+
+fn main() {
+ mut animals := []Animal{}
+ animals << Cat{}
+}