clarified NEWS: document_files are officially required since Isabelle2014, but the absence was tolerated as legacy feature;
(* Title: HOL/HOLCF/IOA/Storage/Action.thy
Author: Olaf Müller
*)
section {* The set of all actions of the system *}
theory Action
imports Main
begin
datatype action = New | Loc nat | Free nat
lemma [cong]: "!!x. x = y ==> case_action a b c x = case_action a b c y"
by simp
end