From 882fa6e71fc033efd082b8f8a0f69ebdd198a589 Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Thu, 14 Jun 2018 16:12:02 -0700 Subject: [PATCH] fix(library/init/meta/expr): order does not match C++ implementation --- library/init/meta/expr.lean | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/init/meta/expr.lean b/library/init/meta/expr.lean index f74ba238c2..cc7e094d77 100644 --- a/library/init/meta/expr.lean +++ b/library/init/meta/expr.lean @@ -34,8 +34,8 @@ instance : has_repr binder_info := meta constant macro_def : Type inductive literal -| str_val (val : string) | nat_val (val : nat) +| str_val (val : string) /-- Reflect a C++ expr object. The VM replaces it with the C++ implementation. -/ meta inductive expr