mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
30 lines
202 B
Ruby
30 lines
202 B
Ruby
@@x = 42
|
|
|
|
p @@x
|
|
|
|
def print
|
|
p @@x
|
|
end
|
|
|
|
class X
|
|
def b
|
|
p @@x
|
|
end
|
|
def self.s
|
|
p @@x
|
|
end
|
|
end
|
|
|
|
class Y < BasicObject
|
|
@@x = 10
|
|
end
|
|
|
|
module M
|
|
@@x = 12
|
|
end
|
|
|
|
module N
|
|
include M
|
|
p @@x
|
|
end
|