Skip to content

Commit 413cfa2

Browse files
committed
[test] Rename union.swift to enum.swift.
They haven't been "unions" for a long, long time. Swift SVN r28132
1 parent 3cf2915 commit 413cfa2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/Serialization/union.swift renamed to test/Serialization/enum.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// RUN: rm -rf %t
22
// RUN: mkdir %t
3-
// RUN: %target-swift-frontend -emit-module -o %t %S/Inputs/def_union.swift
4-
// RUN: llvm-bcanalyzer %t/def_union.swiftmodule | FileCheck %s
3+
// RUN: %target-swift-frontend -emit-module -o %t %S/Inputs/def_enum.swift
4+
// RUN: llvm-bcanalyzer %t/def_enum.swiftmodule | FileCheck %s
55
// RUN: %target-swift-frontend -parse -I %t %s -o /dev/null
66
// RUN: %target-swift-frontend -emit-sil -I %t %s -o /dev/null
77

88
// CHECK-NOT: UnknownCode
99

10-
import def_union
10+
import def_enum
1111

1212
extension Basic {
1313
init(silly: Int) {

0 commit comments

Comments
 (0)