mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
126 B
Swift
10 lines
126 B
Swift
class Descriptor {
|
|
var fd : Int32
|
|
|
|
destructor {
|
|
assert(fd != 0)
|
|
var e = c_file_close(fd)
|
|
assert(e == 0)
|
|
}
|
|
}
|