This is a follow-up question of Why most graph algorithms do not adapt so easily to negative numbers?.
I think Shortest Path (SP) has problem with negative weights, because it adds up all weights along the paths and tries to find the minimum one.
But I don't think Minimum Spanning Tree (MST) has problems with negative weights, because it just takes the single minimum weight edge without caring about the overall total weights.
Am I right?