blob: d1ba47de3607c3da054ba21a6d433564c268a0b6 [file] [log] [blame]
// RUN: %empty-directory(%t)
// %t.input: "A ---> B" ==> "A"
// RUN: sed -ne '/--->/s/ *--->.*$//p' < %S/Inputs/decl-reconstr-names.txt > %t.input
// %t.check: "A ---> B" ==> "B"
// RUN: sed -ne '/--->/s/^.*---> *//p' < %S/Inputs/decl-reconstr-names.txt > %t.check
// RUN: %target-build-swift -emit-executable %s -g -o %t/DeclReconstr -emit-module
// RUN: %lldb-moduleimport-test %t/DeclReconstr -target-triple %target-triple \
// RUN: -decl-from-mangled=%t.input > %t.output 2>&1
// RUN: diff %t.check %t.output
// REQUIRES: executable_test
struct S {
init() {
}
}
func patatino() -> Int {
let s = S()
return 0
}
patatino()