We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 811bdb4 commit 5ce5d24Copy full SHA for 5ce5d24
test/sil-extract/basic.swift
@@ -69,17 +69,17 @@ struct X {
69
}
70
71
class Vehicle {
72
- var num_of_wheels: Int
+ var numOfWheels: Int
73
74
init(n: Int) {
75
- num_of_wheels = n
+ numOfWheels = n
76
77
78
func now() -> Int {
79
- return num_of_wheels;
+ return numOfWheels
80
81
82
83
func foo() -> Int {
84
- return 7;
+ return 7
85
0 commit comments