Files
swift-mirror/test/Serialization/alignment.swift
Mishal Shah 3d2056dd09 Revert "Sema: Targeted fix for LLDB REPL issue"
Test failing:
Swift.IDE.print_ast_tc_decls.swift
Swift.attr.attr_objc.swift
Swift.attr.attr_objc_clang.swift

This reverts commit 1a640d4ff8.
2015-11-20 18:59:44 -08:00

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) {}