Отладка
class Foo : Object {
public int field;
}
void main() {
Foo? foo = null;
stdout.printf("%d\n", foo.field);
}Last updated
Was this helpful?
class Foo : Object {
public int field;
}
void main() {
Foo? foo = null;
stdout.printf("%d\n", foo.field);
}Last updated
Was this helpful?
Was this helpful?
$ gdb debug-demo
(gdb) run
Запуск программы:
/home/valacoder/debug-demo
Программа получает сигнал SIGSEGV,
Ошибка сегментирования.
0x0804881f in _main () at debug-demo.vala:7
7 stdout.printf("%d\n", foo.field);
(gdb)