I did exactly as is said in the SFML tutorials on how to play a song. My program compiles and runs, just the song never plays. You can see my code in the attached image. For context, the loop below there goes on for a very long time so it's not an issue of the loop ending too quickly then the program ends. Even without the setVolume() call it still doesn't work. I made sure to do all the basics like include <SFML/Audio.hpp> and use the -lsfml-audio flags in my Makefile so it's nothing trivial like that.
Any insight is appreciated. If my code looks fine then all I can think of is there's something wrong with the file. All I did was convert an mp3 file to .ogg which is what SFML uses in it's tutorial.