Skip to content

Commit 239b71c

Browse files
committed
Merge pull request #2039 from modocache/sr-1129-xfail
2 parents 60b2c30 + ef1be86 commit 239b71c

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
public class BaseClass {
2+
public internal(set) var variable: Int = 0
3+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// RUN: %target-build-swift -emit-module -emit-library %S/Inputs/public_var_private_setter.swift
2+
// RUN: %target-build-swift -I . -L . -lpublic_var_private_setter %s -o use_public_var_private_setter
3+
4+
// On Linux, the linker step of this test fails with "Bad value", specifically:
5+
// "hidden symbol `_TFC25public_var_private_setter9BaseClasscfT_S0_' isn't defined".
6+
// XFAIL: linux
7+
8+
import public_var_private_setter
9+
10+
class Class: BaseClass {}

0 commit comments

Comments
 (0)