mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01: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
|