Re: [swift-corelibs-dev] [XCTest] Cannot build using XCode

2016-07-05 Thread Brian Croom via swift-corelibs-dev
Hmm, it does look like XCTest needs some work done to get things working
with the latest Swift 3 changes made in the stdlib and corelibs-foundation.
I don't have access to a development environment to investigate further,
but as far as I can tell, this wouldn't build on Linux either. Has there
been any indication of these issues from CI, I wonder?

On Friday, 1 July 2016, Madhu Samuel  wrote:

> I just found more error details in the log. You can find it below. Hope
> this helps.
>
> Error 1
> --
>
> CompileSwift normal x86_64
> /Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Public/XCTestMain.swift
> cd /Users/madhusamuel/dev/swift/swift-corelibs-xctest
> ...
> ...
> /Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Public/XCTestMain.swift:65:71:
> error: 'lastPathComponent' is unavailable: Use lastPathComponent on URL
> instead.
> currentTestSuite = XCTestSuite(name:
> "\(testBundle.bundlePath.lastPathComponent).xctest")
>
> ^
> SwiftFoundation.String:173:16: note: 'lastPathComponent' has been
> explicitly marked unavailable here
> public var lastPathComponent: String { get }
>^
>
>
> Error 2
> --
> CompileSwift normal x86_64
> /Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Private/TestListing.swift
> cd /Users/madhusamuel/dev/swift/swift-corelibs-xctest
> ...
> ...
> /Objects-normal/x86_64/TestListing.swiftdeps -o
> /Users/madhusamuel/dev/swift/build/Ninja-ReleaseAssert/xctest-macosx-x86_64/XCTest.build/Debug/SwiftXCTest.build/Objects-normal/x86_64/TestListing.o
> /Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Private/TestListing.swift:45:46:
> error: cannot convert value of type 'String.Encoding' to expected argument
> type 'UInt'
> print(NSString(data: json, encoding: NSUTF8StringEncoding)!)
>  ^~~~
>  .rawValue
> Assertion failed: (!failed && "Call arguments did not match up?"),
> function coerceCallArguments, file
> /Users/madhusamuel/dev/swift/swift/lib/Sema/CSApply.cpp, line 4655.
> 0  swift0x00010b6a6d5b
> llvm::sys::PrintStackTrace(llvm::raw_ostream&) + 43
> 1  swift0x00010b6a5f86
> llvm::sys::RunSignalHandlers() + 70
> 2  swift0x00010b6a7631 SignalHandler(int) + 641
> 3  libsystem_platform.dylib 0x7fff8ecf552a _sigtramp + 26
> 4  swift0x00010c290579 cmark_strbuf__initbuf +
> 73960
> 5  swift0x00010b6a727e abort + 14
> 6  swift0x00010b6a7261 __assert_rtn + 81
> 7  swift0x000108ff5bae (anonymous
> namespace)::ExprRewriter::coerceCallArguments(swift::Expr*, swift::Type,
> llvm::PointerUnion int, 2> >, swift::constraints::ConstraintLocatorBuilder) + 6190
> 8  swift0x000108fe4b0d (anonymous
> namespace)::ExprRewriter::finishApply(swift::ApplyExpr*, swift::Type,
> swift::constraints::ConstraintLocatorBuilder) + 541
> 9  swift0x000108ff638e (anonymous
> namespace)::ExprRewriter::visitApplyExpr(swift::ApplyExpr*) + 78
> 10 swift0x000108fe2325 (anonymous
> namespace)::ExprRewriter::walkToExprPost(swift::Expr*) + 21
> 11 swift0x000109180db0 (anonymous
> namespace)::Traversal::visit(swift::Expr*) + 160
> 12 swift0x000109182969 (anonymous
> namespace)::Traversal::visit(swift::Expr*) + 7257
> 13 swift0x000109180145
> swift::Expr::walk(swift::ASTWalker&) + 53
> 14 swift0x000108fdedcb
> swift::constraints::ConstraintSystem::applySolution(swift::constraints::Solution&,
> swift::Expr*, swift::Type, bool, bool, bool) + 475
> 15 swift0x000109081e53
> swift::TypeChecker::typeCheckExpression(swift::Expr*&, swift::DeclContext*,
> swift::TypeLoc, swift::ContextualTypePurpose,
> swift::OptionSet,
> swift::ExprTypeCheckListener*) + 739
> 16 swift0x0001090f9fc4
> swift::ASTVisitor<(anonymous namespace)::StmtChecker, void, swift::Stmt*,
> void, void, void, void>::visit(swift::Stmt*) + 4820
> 17 swift0x0001090f8e3e
> swift::ASTVisitor<(anonymous namespace)::StmtChecker, void, swift::Stmt*,
> void, void, void, void>::visit(swift::Stmt*) + 334
> 18 swift0x0001090f93d3
> swift::ASTVisitor<(anonymous namespace)::StmtChecker, void, swift::Stmt*,
> void, void, void, void>::visit(swift::Stmt*) + 1763
> 19 swift0x0001090f8e3e
> swift::ASTVisitor<(anonymous namespace)::StmtChecker, void, swift::Stmt*,
> void, void, void, void>::visit(swift::Stmt*) + 334
> 20 swift0x0001090f81f9 (anonymous
> namespace)::StmtChecker:

Re: [swift-corelibs-dev] Query on NSLog

2016-07-05 Thread Tony Parker via swift-corelibs-dev
Hi Sai,

Out of curiosity, why NSLog instead of Swift’s print function?

- Tony

> On Jun 27, 2016, at 4:37 AM, Sai Kanduri via swift-corelibs-dev 
>  wrote:
> 
> Hi All,
>  
> Currently NSLog  has only one internal function  NSLog()  which can be used 
> only by Foundation classes.Can this be made available as a public API ?
>  
>  
> Thanks & Regards,
>  
> Sai Hema,Java L3 Support
> 
> ___
> swift-corelibs-dev mailing list
> swift-corelibs-dev@swift.org
> https://lists.swift.org/mailman/listinfo/swift-corelibs-dev

___
swift-corelibs-dev mailing list
swift-corelibs-dev@swift.org
https://lists.swift.org/mailman/listinfo/swift-corelibs-dev


Re: [swift-corelibs-dev] Query on NSLog

2016-07-05 Thread Luke Howard via swift-corelibs-dev
I added NSLog for NSKeyedArchiver so the output formatting would more closely 
match Darwin, but I punted whether to make it public.

> On 6 Jul 2016, at 5:42 AM, Tony Parker via swift-corelibs-dev 
>  wrote:
> 
> Hi Sai,
> 
> Out of curiosity, why NSLog instead of Swift’s print function?
> 
> - Tony
> 
>> On Jun 27, 2016, at 4:37 AM, Sai Kanduri via swift-corelibs-dev 
>> mailto:swift-corelibs-dev@swift.org>> wrote:
>> 
>> Hi All,
>>  
>> Currently NSLog  has only one internal function  NSLog()  which can be used 
>> only by Foundation classes.Can this be made available as a public API ?
>>  
>>  
>> Thanks & Regards,
>>  
>> Sai Hema,Java L3 Support
>> 
>> ___
>> swift-corelibs-dev mailing list
>> swift-corelibs-dev@swift.org 
>> https://lists.swift.org/mailman/listinfo/swift-corelibs-dev
> 
> ___
> swift-corelibs-dev mailing list
> swift-corelibs-dev@swift.org
> https://lists.swift.org/mailman/listinfo/swift-corelibs-dev

--
www.lukehoward.com
soundcloud.com/lukehoward

___
swift-corelibs-dev mailing list
swift-corelibs-dev@swift.org
https://lists.swift.org/mailman/listinfo/swift-corelibs-dev


Re: [swift-corelibs-dev] Query on NSLog

2016-07-05 Thread Tony Parker via swift-corelibs-dev
Frankly, I think I just forgot to put a stub for it when we put out the first 
set of APIs.

- Tony

> On Jul 5, 2016, at 4:54 PM, Luke Howard  wrote:
> 
> I added NSLog for NSKeyedArchiver so the output formatting would more closely 
> match Darwin, but I punted whether to make it public.
> 
>> On 6 Jul 2016, at 5:42 AM, Tony Parker via swift-corelibs-dev 
>> mailto:swift-corelibs-dev@swift.org>> wrote:
>> 
>> Hi Sai,
>> 
>> Out of curiosity, why NSLog instead of Swift’s print function?
>> 
>> - Tony
>> 
>>> On Jun 27, 2016, at 4:37 AM, Sai Kanduri via swift-corelibs-dev 
>>> mailto:swift-corelibs-dev@swift.org>> wrote:
>>> 
>>> Hi All,
>>>  
>>> Currently NSLog  has only one internal function  NSLog()  which can be used 
>>> only by Foundation classes.Can this be made available as a public API ?
>>>  
>>>  
>>> Thanks & Regards,
>>>  
>>> Sai Hema,Java L3 Support
>>> 
>>> ___
>>> swift-corelibs-dev mailing list
>>> swift-corelibs-dev@swift.org 
>>> https://lists.swift.org/mailman/listinfo/swift-corelibs-dev 
>>> 
>> 
>> ___
>> swift-corelibs-dev mailing list
>> swift-corelibs-dev@swift.org 
>> https://lists.swift.org/mailman/listinfo/swift-corelibs-dev
> 
> --
> www.lukehoward.com 
> soundcloud.com/lukehoward
> 

___
swift-corelibs-dev mailing list
swift-corelibs-dev@swift.org
https://lists.swift.org/mailman/listinfo/swift-corelibs-dev


Re: [swift-corelibs-dev] [XCTest] Cannot build using XCode

2016-07-05 Thread Brian Gesiak via swift-corelibs-dev
Looks like our continuous integration server works fine:
https://github.com/apple/swift-corelibs-xctest/pull/132

Madhu, are you sure you're using the latest master branch commit on each of
the apple/swift repositories? Specifically, you should pull down the latest
changes on: swift, swift-llvm, swift-clang, swift-corelibs-foundation,
swift-corelibs-xctest, swift-llbuild, and swift-package-manager. The CI
server appears to be fine, so if you're seeing compilation errors, I think
you may be using code that is out of date.

- Brian Gesiak


On Tue, Jul 5, 2016 at 10:36 AM, Brian Croom 
wrote:

> Hmm, it does look like XCTest needs some work done to get things working
> with the latest Swift 3 changes made in the stdlib and corelibs-foundation.
> I don't have access to a development environment to investigate further,
> but as far as I can tell, this wouldn't build on Linux either. Has there
> been any indication of these issues from CI, I wonder?
>
> On Friday, 1 July 2016, Madhu Samuel  wrote:
>
>> I just found more error details in the log. You can find it below. Hope
>> this helps.
>>
>> Error 1
>> --
>>
>> CompileSwift normal x86_64
>> /Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Public/XCTestMain.swift
>> cd /Users/madhusamuel/dev/swift/swift-corelibs-xctest
>> ...
>> ...
>> /Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Public/XCTestMain.swift:65:71:
>> error: 'lastPathComponent' is unavailable: Use lastPathComponent on URL
>> instead.
>> currentTestSuite = XCTestSuite(name:
>> "\(testBundle.bundlePath.lastPathComponent).xctest")
>>
>> ^
>> SwiftFoundation.String:173:16: note: 'lastPathComponent' has been
>> explicitly marked unavailable here
>> public var lastPathComponent: String { get }
>>^
>>
>>
>> Error 2
>> --
>> CompileSwift normal x86_64
>> /Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Private/TestListing.swift
>> cd /Users/madhusamuel/dev/swift/swift-corelibs-xctest
>> ...
>> ...
>> /Objects-normal/x86_64/TestListing.swiftdeps -o
>> /Users/madhusamuel/dev/swift/build/Ninja-ReleaseAssert/xctest-macosx-x86_64/XCTest.build/Debug/SwiftXCTest.build/Objects-normal/x86_64/TestListing.o
>> /Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Private/TestListing.swift:45:46:
>> error: cannot convert value of type 'String.Encoding' to expected argument
>> type 'UInt'
>> print(NSString(data: json, encoding: NSUTF8StringEncoding)!)
>>  ^~~~
>>  .rawValue
>> Assertion failed: (!failed && "Call arguments did not match up?"),
>> function coerceCallArguments, file
>> /Users/madhusamuel/dev/swift/swift/lib/Sema/CSApply.cpp, line 4655.
>> 0  swift0x00010b6a6d5b
>> llvm::sys::PrintStackTrace(llvm::raw_ostream&) + 43
>> 1  swift0x00010b6a5f86
>> llvm::sys::RunSignalHandlers() + 70
>> 2  swift0x00010b6a7631 SignalHandler(int) + 641
>> 3  libsystem_platform.dylib 0x7fff8ecf552a _sigtramp + 26
>> 4  swift0x00010c290579 cmark_strbuf__initbuf +
>> 73960
>> 5  swift0x00010b6a727e abort + 14
>> 6  swift0x00010b6a7261 __assert_rtn + 81
>> 7  swift0x000108ff5bae (anonymous
>> namespace)::ExprRewriter::coerceCallArguments(swift::Expr*, swift::Type,
>> llvm::PointerUnion> int, 2> >, swift::constraints::ConstraintLocatorBuilder) + 6190
>> 8  swift0x000108fe4b0d (anonymous
>> namespace)::ExprRewriter::finishApply(swift::ApplyExpr*, swift::Type,
>> swift::constraints::ConstraintLocatorBuilder) + 541
>> 9  swift0x000108ff638e (anonymous
>> namespace)::ExprRewriter::visitApplyExpr(swift::ApplyExpr*) + 78
>> 10 swift0x000108fe2325 (anonymous
>> namespace)::ExprRewriter::walkToExprPost(swift::Expr*) + 21
>> 11 swift0x000109180db0 (anonymous
>> namespace)::Traversal::visit(swift::Expr*) + 160
>> 12 swift0x000109182969 (anonymous
>> namespace)::Traversal::visit(swift::Expr*) + 7257
>> 13 swift0x000109180145
>> swift::Expr::walk(swift::ASTWalker&) + 53
>> 14 swift0x000108fdedcb
>> swift::constraints::ConstraintSystem::applySolution(swift::constraints::Solution&,
>> swift::Expr*, swift::Type, bool, bool, bool) + 475
>> 15 swift0x000109081e53
>> swift::TypeChecker::typeCheckExpression(swift::Expr*&, swift::DeclContext*,
>> swift::TypeLoc, swift::ContextualTypePurpose,
>> swift::OptionSet,
>> swift::ExprTypeCheckListener*) + 739
>> 16 swift0x0001090f9fc4
>> swift::ASTVisitor<(anonymous namespace)::StmtChecker, voi

Re: [swift-corelibs-dev] [XCTest] Cannot build using XCode

2016-07-05 Thread Madhu Samuel via swift-corelibs-dev
Thanks for getting back on that.

Just a quick check. I can get the latest master branch from all needed
repos' using swift/utils/update-checkout, rt?. Or do I need to explicitly
checkout from each repo?

On Wed, Jul 6, 2016 at 10:35 AM, Brian Gesiak  wrote:

> Looks like our continuous integration server works fine:
> https://github.com/apple/swift-corelibs-xctest/pull/132
>
> Madhu, are you sure you're using the latest master branch commit on each
> of the apple/swift repositories? Specifically, you should pull down the
> latest changes on: swift, swift-llvm, swift-clang,
> swift-corelibs-foundation, swift-corelibs-xctest, swift-llbuild, and
> swift-package-manager. The CI server appears to be fine, so if you're
> seeing compilation errors, I think you may be using code that is out of
> date.
>
> - Brian Gesiak
>
>
> On Tue, Jul 5, 2016 at 10:36 AM, Brian Croom 
> wrote:
>
>> Hmm, it does look like XCTest needs some work done to get things working
>> with the latest Swift 3 changes made in the stdlib and corelibs-foundation.
>> I don't have access to a development environment to investigate further,
>> but as far as I can tell, this wouldn't build on Linux either. Has there
>> been any indication of these issues from CI, I wonder?
>>
>> On Friday, 1 July 2016, Madhu Samuel  wrote:
>>
>>> I just found more error details in the log. You can find it below. Hope
>>> this helps.
>>>
>>> Error 1
>>> --
>>>
>>> CompileSwift normal x86_64
>>> /Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Public/XCTestMain.swift
>>> cd /Users/madhusamuel/dev/swift/swift-corelibs-xctest
>>> ...
>>> ...
>>> /Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Public/XCTestMain.swift:65:71:
>>> error: 'lastPathComponent' is unavailable: Use lastPathComponent on URL
>>> instead.
>>> currentTestSuite = XCTestSuite(name:
>>> "\(testBundle.bundlePath.lastPathComponent).xctest")
>>>
>>> ^
>>> SwiftFoundation.String:173:16: note: 'lastPathComponent' has been
>>> explicitly marked unavailable here
>>> public var lastPathComponent: String { get }
>>>^
>>>
>>>
>>> Error 2
>>> --
>>> CompileSwift normal x86_64
>>> /Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Private/TestListing.swift
>>> cd /Users/madhusamuel/dev/swift/swift-corelibs-xctest
>>> ...
>>> ...
>>> /Objects-normal/x86_64/TestListing.swiftdeps -o
>>> /Users/madhusamuel/dev/swift/build/Ninja-ReleaseAssert/xctest-macosx-x86_64/XCTest.build/Debug/SwiftXCTest.build/Objects-normal/x86_64/TestListing.o
>>> /Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Private/TestListing.swift:45:46:
>>> error: cannot convert value of type 'String.Encoding' to expected argument
>>> type 'UInt'
>>> print(NSString(data: json, encoding: NSUTF8StringEncoding)!)
>>>  ^~~~
>>>
>>>  .rawValue
>>> Assertion failed: (!failed && "Call arguments did not match up?"),
>>> function coerceCallArguments, file
>>> /Users/madhusamuel/dev/swift/swift/lib/Sema/CSApply.cpp, line 4655.
>>> 0  swift0x00010b6a6d5b
>>> llvm::sys::PrintStackTrace(llvm::raw_ostream&) + 43
>>> 1  swift0x00010b6a5f86
>>> llvm::sys::RunSignalHandlers() + 70
>>> 2  swift0x00010b6a7631 SignalHandler(int) + 641
>>> 3  libsystem_platform.dylib 0x7fff8ecf552a _sigtramp + 26
>>> 4  swift0x00010c290579 cmark_strbuf__initbuf +
>>> 73960
>>> 5  swift0x00010b6a727e abort + 14
>>> 6  swift0x00010b6a7261 __assert_rtn + 81
>>> 7  swift0x000108ff5bae (anonymous
>>> namespace)::ExprRewriter::coerceCallArguments(swift::Expr*, swift::Type,
>>> llvm::PointerUnion>> int, 2> >, swift::constraints::ConstraintLocatorBuilder) + 6190
>>> 8  swift0x000108fe4b0d (anonymous
>>> namespace)::ExprRewriter::finishApply(swift::ApplyExpr*, swift::Type,
>>> swift::constraints::ConstraintLocatorBuilder) + 541
>>> 9  swift0x000108ff638e (anonymous
>>> namespace)::ExprRewriter::visitApplyExpr(swift::ApplyExpr*) + 78
>>> 10 swift0x000108fe2325 (anonymous
>>> namespace)::ExprRewriter::walkToExprPost(swift::Expr*) + 21
>>> 11 swift0x000109180db0 (anonymous
>>> namespace)::Traversal::visit(swift::Expr*) + 160
>>> 12 swift0x000109182969 (anonymous
>>> namespace)::Traversal::visit(swift::Expr*) + 7257
>>> 13 swift0x000109180145
>>> swift::Expr::walk(swift::ASTWalker&) + 53
>>> 14 swift0x000108fdedcb
>>> swift::constraints::ConstraintSystem::applySolution(swift::constraints::Solution&,
>>> swift::Expr*, swift::Type, bool, bool, bool) + 475
>>> 15 swift0x00

Re: [swift-corelibs-dev] [XCTest] Cannot build using XCode

2016-07-05 Thread Brian Gesiak via swift-corelibs-dev
Yup, update-checkout should get everything you need!






On Tue, Jul 5, 2016 at 10:35 PM -0400, "Madhu Samuel"  
wrote:










Thanks for getting back on that.
Just a quick check. I can get the latest master branch from all needed repos' 
using swift/utils/update-checkout, rt?. Or do I need to explicitly checkout 
from each repo?
On Wed, Jul 6, 2016 at 10:35 AM, Brian Gesiak  wrote:
Looks like our continuous integration server works fine: 
https://github.com/apple/swift-corelibs-xctest/pull/132

Madhu, are you sure you're using the latest master branch commit on each of the 
apple/swift repositories? Specifically, you should pull down the latest changes 
on: swift, swift-llvm, swift-clang, swift-corelibs-foundation, 
swift-corelibs-xctest, swift-llbuild, and swift-package-manager. The CI server 
appears to be fine, so if you're seeing compilation errors, I think you may be 
using code that is out of date.
- Brian Gesiak

On Tue, Jul 5, 2016 at 10:36 AM, Brian Croom  wrote:
Hmm, it does look like XCTest needs some work done to get things working with 
the latest Swift 3 changes made in the stdlib and corelibs-foundation. I don't 
have access to a development environment to investigate further, but as far as 
I can tell, this wouldn't build on Linux either. Has there been any indication 
of these issues from CI, I wonder?
On Friday, 1 July 2016, Madhu Samuel  wrote:
I just found more error details in the log. You can find it below. Hope this 
helps.
Error 1--
CompileSwift normal x86_64 
/Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Public/XCTestMain.swift
    cd /Users/madhusamuel/dev/swift/swift-corelibs-xctest    ...    
.../Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Public/XCTestMain.swift:65:71:
 error: 'lastPathComponent' is unavailable: Use lastPathComponent on URL 
instead.        currentTestSuite = XCTestSuite(name: 
"\(testBundle.bundlePath.lastPathComponent).xctest")                            
                                          
^SwiftFoundation.String:173:16: note: 'lastPathComponent' has 
been explicitly marked unavailable here    public var lastPathComponent: String 
{ get }               ^

Error 2--CompileSwift normal x86_64 
/Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Private/TestListing.swift
    cd /Users/madhusamuel/dev/swift/swift-corelibs-xctest    ...    ...    
/Objects-normal/x86_64/TestListing.swiftdeps -o 
/Users/madhusamuel/dev/swift/build/Ninja-ReleaseAssert/xctest-macosx-x86_64/XCTest.build/Debug/SwiftXCTest.build/Objects-normal/x86_64/TestListing.o/Users/madhusamuel/dev/swift/swift-corelibs-xctest/Sources/XCTest/Private/TestListing.swift:45:46:
 error: cannot convert value of type 'String.Encoding' to expected argument 
type 'UInt'        print(NSString(data: json, encoding: NSUTF8StringEncoding)!) 
                                            ^~~~                
                                                 .rawValueAssertion failed: 
(!failed && "Call arguments did not match up?"), function coerceCallArguments, 
file /Users/madhusamuel/dev/swift/swift/lib/Sema/CSApply.cpp, line 4655.0  
swift                    0x00010b6a6d5b 
llvm::sys::PrintStackTrace(llvm::raw_ostream&) + 431  swift                    
0x00010b6a5f86 llvm::sys::RunSignalHandlers() + 702  swift                  
  0x00010b6a7631 SignalHandler(int) + 6413  libsystem_platform.dylib 
0x7fff8ecf552a _sigtramp + 264  swift                    0x00010c290579 
cmark_strbuf__initbuf + 739605  swift                    0x00010b6a727e 
abort + 146  swift                    0x00010b6a7261 __assert_rtn + 817  
swift                    0x000108ff5bae (anonymous 
namespace)::ExprRewriter::coerceCallArguments(swift::Expr*, swift::Type, 
llvm::PointerUnion 
>, swift::constraints::ConstraintLocatorBuilder) + 61908  swift                 
   0x000108fe4b0d (anonymous 
namespace)::ExprRewriter::finishApply(swift::ApplyExpr*, swift::Type, 
swift::constraints::ConstraintLocatorBuilder) + 5419  swift                    
0x000108ff638e (anonymous 
namespace)::ExprRewriter::visitApplyExpr(swift::ApplyExpr*) + 7810 swift        
            0x000108fe2325 (anonymous 
namespace)::ExprRewriter::walkToExprPost(swift::Expr*) + 2111 swift             
       0x000109180db0 (anonymous namespace)::Traversal::visit(swift::Expr*) 
+ 16012 swift                    0x000109182969 (anonymous 
namespace)::Traversal::visit(swift::Expr*) + 725713 swift                    
0x000109180145 swift::Expr::walk(swift::ASTWalker&) + 5314 swift            
        0x000108fdedcb 
swift::constraints::ConstraintSystem::applySolution(swift::constraints::Solution&,
 swift::Expr*, swift::Type, bool, bool, bool) + 47515 swift                    
0x000109081e53 swift::TypeChecker::typeCheckExpression(swift::Expr*&, 
swift