## test.pp
class a {
$foo = 10
}

class b inherits a {
$foo = 20

notice($foo)
}

include b


## run
% puppet test.pp
notice: Scope(Class[b]): 20