Files
codeql/ruby/ql/test/library-tests/dataflow/erb/view3.rb
2024-01-30 20:30:58 +01:00

9 lines
114 B
Ruby

class View3 < ViewComponent::Base
def initialize(x)
@x = x
end
def get
@x
end
end