Fix a bug reported by Kelly Wilson, where we incorrectly
rejected FP immediates like 08.123


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52890 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Lexer/number.c b/test/Lexer/number.c
index 4e12cc7..e48816e 100644
--- a/test/Lexer/number.c
+++ b/test/Lexer/number.c
@@ -2,3 +2,5 @@
 
 float X = 1.17549435e-38F;
 
+float Y = 08.123456;
+