mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Test failing:
Swift.IDE.print_ast_tc_decls.swift
Swift.attr.attr_objc.swift
Swift.attr.attr_objc_clang.swift
This reverts commit 1a640d4ff8.
11 lines
289 B
Swift
11 lines
289 B
Swift
// RUN: rm -rf %t
|
|
// RUN: mkdir %t
|
|
// RUN: %target-swift-frontend %s -emit-module -parse-as-library -o %t
|
|
// RUN: %target-sil-opt -enable-sil-verify-all %t/alignment.swiftmodule -o - | FileCheck %s
|
|
|
|
//CHECK: @_alignment(16) struct Foo {
|
|
@_alignment(16) struct Foo {}
|
|
|
|
func foo(x: Foo) {}
|
|
|