Table of Contents

You cannot use pipe operator inside of parenthesis (AJTERR10018)

Product(s) Karo.Net Compiler

Description

The pipe operator must not be used from inside parenthesis.

("world" -> test);
//       ^^ Pipe operator inside of parenthesis.

How can I resolve this error?

Get rid of the parenthesis or don't use pipes.