# HG changeset patch
# User David A. Holland
# Date 1371434886 14400
# Node ID a6d02e6ca543b54fd462680066c47efb38396824
# Parent  b4f97f6b32c2de69e9d81da6c432cab504006115
Test single-quote strings / character constants.

diff -r b4f97f6b32c2 -r a6d02e6ca543 tests/t31.c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/t31.c	Sun Jun 16 22:08:06 2013 -0400
@@ -0,0 +1,6 @@
+this line 'has /* no' comment */ in it
+
+#define BELCH(x) 'x'
+"BELCH(123)": BELCH(123)
+'BELCH(123)': BELCH(123)
+
diff -r b4f97f6b32c2 -r a6d02e6ca543 tests/t31.good
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/t31.good	Sun Jun 16 22:08:06 2013 -0400
@@ -0,0 +1,3 @@
+this line 'has /* no' comment */ in it
+"BELCH(123)": '123'
+'BELCH(123)': '123'