<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Hi,<div class=""><br class=""></div><div class="">This error makes perfect sense, but I’m surprised it's a runtime error. I expected it at compile time. Am I doing something wrong? Is this on the type system to-do list?</div><div class=""><br class=""></div><div class=""><font face="Courier" class="">&nbsp; let&nbsp;c =&nbsp;JSONEncoder()</font></div><div class=""><font face="Courier" class="">&nbsp; struct Foo { … }</font></div><div class=""><font face="Courier" class="">&nbsp; let fs: [Foo] = [&nbsp;Foo(...) ]<br class="">&nbsp; let&nbsp;data =&nbsp;try!&nbsp;c.encode(fs) &nbsp; // Didn’t think this would compile</font></div><div class=""><br class=""></div><div class="">The runtime error is: fatal error: Array&lt;Foo&gt; does not conform to Encodable because Foo does not conform to Encodable.</div><div class=""><br class=""></div><div class="">Rob</div></body></html>