mirror of
https://github.com/intel/llvm.git
synced 2026-01-20 10:58:11 +08:00
a3501d4b81c170d3b0fc7645a6f5357c24e517e7
Trailing return types can only occur in declaration contexts.
Before:
void f() { auto a = b -> c(); }
After:
void f() { auto a = b->c(); }
llvm-svn: 186087
Languages
LLVM
41.5%
C++
31.7%
C
13%
Assembly
9.1%
MLIR
1.5%
Other
2.8%