<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div>There is nothing preventing you from using fileprivate if you want to write your code in this style. &nbsp;At most you can complain that you don't like the new keyword. &nbsp;But you're not losing any functionality so I don't understand why you say you are "missing" something.</div><div id="AppleMailSignature"><br>Sent from my iPad</div><div><br>On Jun 29, 2016, at 1:25 AM, David Hart via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><meta http-equiv="Content-Type" content="text/html charset=utf-8"><br class=""><div><blockquote type="cite" class=""><div class="">On 29 Jun 2016, at 04:03, Matthew Judge &lt;<a href="mailto:matthew.judge@gmail.com" class="">matthew.judge@gmail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><span style="font-family: Helvetica; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">If I understand SE-0025 (even with the amendment) you can still spell the access modifier to types as 'private' and get the same characteristics as the pre-SE-0025 meaning or private, so I'm not sure I understand the concern here. However (continued below)</span></div></blockquote></div><br class=""><div class="">The characteristic I will be missing is for the following style of writing:</div><div class=""><br class=""></div><div class="">class&nbsp;MyViewController&nbsp;:&nbsp;UIViewController {<br class="">&nbsp; &nbsp;&nbsp;private&nbsp;var&nbsp;privateInfo:&nbsp;String?<br class="">}<br class=""><br class="">//MARK: Public<br class=""><br class="">public&nbsp;extension&nbsp;MyViewController {<br class="">&nbsp; &nbsp;&nbsp;func&nbsp;publicFunction() {<br class="">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;// CAN’T ACCESS privateInfo<br class="">&nbsp; &nbsp; }<br class="">}<br class=""><br class="">//MARK: UITableViewDataSource<br class=""><br class="">private&nbsp;extension&nbsp;MyViewController&nbsp;:&nbsp;UITableViewDataSource {<br class="">&nbsp; &nbsp;&nbsp;func&nbsp;numberOfRowsInSection(_&nbsp;section:&nbsp;Int)&nbsp;-&gt;&nbsp;Int<br class="">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;// CAN’T ACCESS privateInfo<br class="">&nbsp; &nbsp; }<br class="">}<br class=""><br class="">//MARK: Private<br class=""><br class="">private&nbsp;extension&nbsp;MyViewController {<br class="">&nbsp; &nbsp;&nbsp;func&nbsp;implementationFunction() {<br class="">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;// CAN’T ACCESS privateInfo<br class="">&nbsp; &nbsp; }<br class="">}</div></div></blockquote><blockquote type="cite"><div><span>_______________________________________________</span><br><span>swift-evolution mailing list</span><br><span><a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a></span><br><span><a href="https://lists.swift.org/mailman/listinfo/swift-evolution">https://lists.swift.org/mailman/listinfo/swift-evolution</a></span><br></div></blockquote></body></html>