blob: cad805ed57917f4724f505358f26a55b7eb201e4 [file] [log] [blame]
###############################################################################
# Copyright (c) 2005, 2007 IBM Corporation and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License v. 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0.
#
# SPDX-License-Identifier: EPL-2.0
#
###############################################################################
class Foo
def initialize
p 'Foo'
end
def foo_f
end
end
class Bar
def initialize
p 'Bar'
end
def bar_f
end
def self.abcd; end
end
t = false
x = (t ? Foo : Bar).new
t = Bar
t.
foo = Foo.new
bar = Bar.new