mirror of
https://github.com/github/codeql.git
synced 2026-04-10 09:34:00 +02:00
13 lines
102 B
Ruby
13 lines
102 B
Ruby
require_relative "./module"
|
|
|
|
class B
|
|
include M1
|
|
|
|
def foo(x, y)
|
|
end
|
|
end
|
|
|
|
class C
|
|
extend M1
|
|
end
|