1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
## This is a test of attempting to override an explicitly specified input. version 1.3 task foo { input { String x = "hi" } command <<<>>> } workflow bar { hints { allow_nested_inputs: true } call foo { x = "hello" } }