crashes. (In contrast, several other plot types work with ranges, for instance, surf and plot.) Example: ``` x = -10:10 y = range(-5,5,length=11) z = x.^2 .+ y'.^2 figure() contour(x, y, z') #crashes #contour(collect(x), collect(y), z') #works ```