Revision ac4b68fbf45853ba4b9e327cb42f93f42a8fa252 authored by Ellie Shin on 17 March 2023, 04:14:20 UTC, committed by Ellie Shin on 17 March 2023, 04:14:20 UTC
1 parent f2c68fb
Raw File
ASTPrinter-imported-names.swift
// REQUIRES: executable_test
// REQUIRES: objc_interop
// RUN: %empty-directory(%t)
// RUN: echo '$sSo3FooVD' > %t/list
// RUN: %target-build-swift -emit-executable %s -g -o %t/a.out -I %S/Inputs \
// RUN:   -module-name ASTPrinter -emit-module
// RUN: %lldb-moduleimport-test -qualify-types \
// RUN:   -type-from-mangled=%t/list %t/a.out | %FileCheck %s
// This name should come out fully qualified.
// CHECK: ClangModule.Foo
import ClangModule
let foo = Foo()
back to top