summary refs log tree commit diff stats
path: root/tinyc/tests/tests2/83_utf8_in_identifiers.c
diff options
context:
space:
mode:
Diffstat (limited to 'tinyc/tests/tests2/83_utf8_in_identifiers.c')
-rw-r--r--tinyc/tests/tests2/83_utf8_in_identifiers.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/tinyc/tests/tests2/83_utf8_in_identifiers.c b/tinyc/tests/tests2/83_utf8_in_identifiers.c
new file mode 100644
index 000000000..1f8609525
--- /dev/null
+++ b/tinyc/tests/tests2/83_utf8_in_identifiers.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+double привет=0.1;
+int Lefèvre=2;
+int main(){
+    printf("привет=%g\n",привет);
+    printf("Lefèvre=%d\n",Lefèvre);
+    return 0;
+}
+// pcc & tcc only