Please, observe:
$ diff <(echo a) <<<b
diff: missing operand after '/dev/fd/63'
diff: Try 'diff --help' for more information.
I know <(...) works fine:
$ diff <(echo a) <(echo b)
1c1
< a
---
> b
I also know <<< works fine in general:
$ cat <<<a
a
So what is the right way to call it with diff?