From a33b684a027b8f5efb1e197d7f3e294d2f271f26 Mon Sep 17 00:00:00 2001 From: mrBliss Date: Tue, 1 Dec 2015 18:26:00 +0100 Subject: Fix #103: comment indentation after struct members Correctly indent comments that come after struct members that do not have a trailing comma. Before: struct A { x: u8 // TOO FAR } After: struct A { x: u8 // CORRECT } --- rust-mode-tests.el | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'rust-mode-tests.el') diff --git a/rust-mode-tests.el b/rust-mode-tests.el index e621f82..eb13128 100644 --- a/rust-mode-tests.el +++ b/rust-mode-tests.el @@ -600,6 +600,24 @@ fn foo() { " )) +;; This is a test for #103: a comment after the last struct member that does +;; not have a trailing comma. The comment used to be indented one stop too +;; far. +(ert-deftest indent-comment-after-last-struct-member () + (test-indent + " +struct A { + x: u8 + // comment +} + +struct A { + x: u8 + /* comment */ +} +" + )) + (setq rust-test-motion-string " fn fn1(arg: int) -> bool { -- cgit v1.2.3