From d068a422173a55eda92996aa46ec1094be614520 Mon Sep 17 00:00:00 2001 From: pboutill Date: Fri, 8 Apr 2011 16:26:12 +0000 Subject: A module out of Program to have list notations (bug 2463) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13978 85f007b7-540e-0410-9357-904b9bb8a0f7 --- theories/Program/Syntax.v | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'theories/Program') diff --git a/theories/Program/Syntax.v b/theories/Program/Syntax.v index d66785874..a66e1284b 100644 --- a/theories/Program/Syntax.v +++ b/theories/Program/Syntax.v @@ -28,11 +28,8 @@ Implicit Arguments snd [[A] [B]]. Implicit Arguments nil [[A]]. Implicit Arguments cons [[A]]. -(** Standard notations for lists. *) - -Notation " [ ] " := nil : list_scope. -Notation " [ x ] " := (cons x nil) : list_scope. -Notation " [ x ; .. ; y ] " := (cons x .. (cons y nil) ..) : list_scope. +Require List. +Export List.ListNotations. Require Import Bvector. -- cgit v1.2.3