mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Also remove -verify from almost all of them, since only two actually have expected diagnostic output that is tested. Swift SVN r32198
9 lines
293 B
Swift
9 lines
293 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/semantics.swiftmodule -o - | FileCheck %s
|
|
|
|
//CHECK: @_semantics("crazy") func foo()
|
|
@_semantics("crazy") func foo() -> Int { return 5}
|
|
|