Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
- adjusted test output for test but need to check if there is a possi…
…bility to ignore whitespace
  • Loading branch information
dani-hengl committed Jan 16, 2024
commit b3d26ad245d41b362569a30e1c6fa827ff936b57
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
struct A {
let a: String
let b: String
public init(a: String, b: String) {
self.a = a
self.b = b
}

public init(a: String, b: String) {
self.a = a
self.b = b
}
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
struct A {
static let constant = 99
let a: String

var isAEmpty: Bool {
a.size == 0
}

public init(a: String) {
self.a = a
}
public init(a: String) {
self.a = a
}
}