1
1
mirror of https://github.com/google/ormolu.git synced 2024-09-11 08:05:24 +03:00

Add a CPP macro continuation test

This commit is contained in:
Mark Karpov 2020-04-22 15:42:25 +02:00
parent 53f582a575
commit ec1a432eed
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,8 @@
foo :: Int
foo = 5
#define message_for(a, b) \
printf(#a " and " #b ": We love you!\n")
bar :: Int
bar = 6

View File

@ -0,0 +1,8 @@
foo :: Int
foo = 5
#define message_for(a, b) \
printf(#a " and " #b ": We love you!\n")
bar :: Int
bar = 6