mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
176 B
Go
14 lines
176 B
Go
package main
|
|
|
|
type Rect struct {
|
|
x, y, width, height int
|
|
}
|
|
|
|
func (r *Rect) setWidth(width int) {
|
|
r.width = width
|
|
}
|
|
|
|
func (r *Rect) setHeight(height int) {
|
|
height = height
|
|
}
|