/* Copyright ⓒ 2015 rust-custom-derive contributors. Licensed under the MIT license (see LICENSE or ) or the Apache License, Version 2.0 (see LICENSE of ), at your option. All files in the project carrying such notice may not be copied, modified, or distributed except according to those terms. */ #[macro_use] extern crate custom_derive; macro_rules! Dummy { ($($tts:tt)*) => {}; } custom_derive! { #[derive(Dummy,)] enum Foo { Bar } } #[test] fn test_trailing_comma() { let _ = Foo::Bar; }