[PATCH] D75368: [clang-format] Handle ?. ?? and ?[ as C# tokens
Jonathan B Coe via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 28 10:23:13 PST 2020
jbcoe planned changes to this revision.
jbcoe added a comment.
There's a weird test failure I'm unable to reproduce outside of the tests with real source code where
public static void Main(string[] args)
{
string dirPath = args?[0];
}
is (mis)-formatted as
public static void Main(string[] args)
{ string dirPath = args?[0];
}
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75368/new/
https://reviews.llvm.org/D75368
More information about the cfe-commits
mailing list